aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/menuparent_white.xml
blob: 478101b00b820d46f663b29663d570dbe7328e64 (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"
    style="@style/whiteBtn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/LightGray"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/menuparent_indicator"
        android:layout_width="25dp"
        android:layout_height="50dp"
        android:layout_gravity="center_vertical"
        android:src="@drawable/expand_close" />

    <TextView
        android:id="@+id/textView_menuItem"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="16dp"
        android:layout_marginTop="16dp"
        android:paddingLeft="10dp"
        android:text="Text"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="@color/Gray" />

</LinearLayout>