mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-18 14:29:17 +01:00
d86d5c1a35
This commit mainly refactors the adapters by adding spacing, comments and following other guidelines. In addition, it moves from using `BaseAdapter` to `RecyclerView.Adapter` which leads to much cleaner adapter classes. a
19 lines
659 B
XML
19 lines
659 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:textColor="?colorSecondary"
|
|
android:textSize="15sp" />
|
|
|
|
</RelativeLayout>
|