2019-07-03 20:44:28 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-12 18:13:29 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/app_item_linear"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-12 18:13:29 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="15dp">
|
2019-07-03 20:44:28 +02:00
|
|
|
|
|
|
|
<ImageView
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:layout_centerVertical="true"
|
2020-04-12 18:13:29 +02:00
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:contentDescription="@string/icon" />
|
2019-07-03 20:44:28 +02:00
|
|
|
|
|
|
|
<TextView
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/text_title"
|
2020-04-12 18:13:29 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-04-12 18:13:29 +02:00
|
|
|
android:layout_alignTop="@id/icon"
|
|
|
|
android:layout_toEndOf="@id/icon"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
|
|
tools:ignore="RelativeOverlap" />
|
2019-07-03 20:44:28 +02:00
|
|
|
|
|
|
|
<TextView
|
2019-09-14 14:41:00 +02:00
|
|
|
android:id="@+id/text_subtitle"
|
2020-04-12 18:13:29 +02:00
|
|
|
android:layout_width="wrap_content"
|
2019-09-14 14:41:00 +02:00
|
|
|
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>
|