summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/simple_icon_list_item.xml
blob: 7ed129204af81e24ba39203583c1410e1d3721b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:padding="16dp">

    <ImageView
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:id="@+id/icon"/>

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginLeft="16dp"
            android:layout_gravity="center_vertical"
            android:layout_marginStart="16dp">

        <TextView
                tools:text="Title"
                android:textColor="?android:attr/textColorPrimary"
                android:textSize="16sp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/title"/>

        <TextView
                tools:text="Subtitle"
                android:textColor="?android:attr/textColorSecondary"
                android:textSize="14sp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/subtitle"/>

    </LinearLayout>

</LinearLayout>