aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/drawer_list_item.xml
blob: 4719483da296a49251927771bd0b27cb57159064 (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fontawesometext="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/drawer_item_icon"
        android:gravity="center_vertical"
        android:layout_width="30dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true" />

    <TextView
        android:id="@+id/drawer_item_text"
        android:text="Test"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:layout_marginLeft="8dp"
        android:paddingBottom="16dp"
        android:paddingRight="16dp"
        android:paddingTop="16dp"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:textColor="#111"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@id/drawer_item_icon"/>

</RelativeLayout>