aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res/layout/drawer_list_item.xml
blob: 0d4b9537ee7b75621f2853452d74399418b77b80 (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
<LinearLayout 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"
    android:orientation="horizontal" >

    <com.beardedhen.androidbootstrap.FontAwesomeText
        android:id="@+id/drawer_item_icon"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:layout_margin="10dp"
        android:gravity="center_vertical"
        android:textSize="24sp"
        fontawesometext:fa_icon="fa-github" />

    <TextView
        android:id="@+id/drawer_item_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:paddingBottom="16dp"
        android:paddingLeft="4dp"
        android:paddingRight="16dp"
        android:paddingTop="16dp"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:textColor="#111" />

</LinearLayout><!--
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceListItemSmall"
    android:gravity="center_vertical"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:textColor="#fff"
    android:background="?android:attr/activatedBackgroundIndicator"
    android:minHeight="?android:attr/listPreferredItemHeightSmall"/>
-->