aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/menuitem_gray.xml
blob: c973b711821850b55f5343e3409ad3677b6fda22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/grayBtn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <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/LightGray" />

</LinearLayout>