summaryrefslogtreecommitdiffstats
path: root/res/layout/item_row.xml
blob: ca6ac0c4eff9292554f1b4de2b966d57b6ac9a9e (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:padding="10dp"
    android:layout_height="wrap_content">

    <ImageView
        android:src="@drawable/ic_settings_notifications"
        android:layout_marginRight="10dp"
        android:gravity="top"
        android:layout_gravity="top"
        android:layout_width="25dp"
        android:layout_height="25dp" />

    <TextView
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:gravity="center_vertical"
        android:fadingEdge="horizontal"
        android:id="@+id/label"
        android:maxLines="7"
        android:layout_weight="1"
        android:textColor="@android:color/darker_gray"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

</LinearLayout>