summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/nav_section_item.xml
blob: 1f2fc7e3e3a860bb2f7d605fc96a764af757400c (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
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@android:color/transparent">

    <TextView
        android:id="@+id/txtvTitle"
        android:textColor="?android:attr/textColorTertiary"
        android:textSize="@dimen/text_size_small"
        android:typeface="sans"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentBottom="true"
        android:layout_marginTop="16dp"
        android:paddingBottom="4dp"/>

    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_alignParentBottom="true"
        android:background="@color/gray"/>
</RelativeLayout>