aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_navigation_drawer.xml
blob: 6555bb3a4b5e30eb13069a8e38f12d03c239891e (plain) (blame)
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/itemLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:orientation="vertical"

    android:layout_marginTop="0dp"
    android:background="#121212"
    >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:minHeight="55dp"
        >

        <TextView
            android:id="@+id/item_navigation_drawer_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#FFFFFF"
            />
    </LinearLayout>

</LinearLayout>