2020-05-28 21:27:25 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/controller_item"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="vertical"
|
2020-11-22 10:41:01 +01:00
|
|
|
android:paddingVertical="8dp"
|
|
|
|
android:paddingHorizontal="16dp">
|
2020-05-28 21:27:25 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
|
|
tools:ignore="RelativeOverlap" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/text_title"
|
|
|
|
android:layout_alignStart="@id/text_title"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSecondary"
|
|
|
|
android:textColor="@android:color/tertiary_text_light" />
|
|
|
|
</RelativeLayout>
|