summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/nav_section_item.xml
blob: fb302155624257d8bd088316e91c838d249d8181 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/transparent"
    android:orientation="vertical"
    android:importantForAccessibility="no"
    android:paddingTop="8dp"
    android:paddingBottom="8dp">

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="?android:attr/listDivider"
        tools:background="@android:color/holo_red_dark"/>

    <TextView
        android:id="@+id/nav_feeds_filtered_message"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="start"
        android:paddingStart="@dimen/listitem_icon_leftpadding"
        android:paddingTop="4dp"
        android:paddingEnd="@dimen/listitem_icon_leftpadding"
        android:textColor="?android:attr/textColorSecondary"
        android:textSize="@dimen/text_size_small" />
</LinearLayout>