summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/nav_list.xml
blob: 52fde0a5fcfdfe53db90b4b5b79094316328f49a (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/nav_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:background="?android:attr/windowBackground">

    <LinearLayout
        android:id="@+id/nav_settings"
        android:layout_width="match_parent"
        android:layout_height="@dimen/listitem_iconwithtext_height"
        android:fitsSystemWindows="true"
        android:layout_alignParentBottom="true"
        android:background="?attr/selectableItemBackground"
        android:contentDescription="@string/settings_label"
        android:accessibilityTraversalBefore="@id/nav_list"
        android:orientation="horizontal"
        android:focusable="true">

        <ImageView
            android:layout_width="@dimen/thumbnail_length_navlist"
            android:layout_height="@dimen/thumbnail_length_navlist"
            android:layout_marginBottom="4dp"
            android:layout_marginLeft="@dimen/listitem_icon_leftpadding"
            android:layout_marginStart="@dimen/listitem_icon_leftpadding"
            android:layout_marginTop="4dp"
            android:adjustViewBounds="true"
            android:importantForAccessibility="no"
            android:cropToPadding="true"
            android:padding="8dp"
            android:scaleType="centerCrop"
            app:srcCompat="@drawable/ic_settings"
            tools:background="@android:color/holo_orange_dark"
            tools:src="@android:drawable/sym_def_app_icon" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_marginLeft="16dp"
            android:layout_marginStart="16dp"
            android:layout_weight="1"
            android:gravity="center_vertical"
            android:text="@string/settings_label"
            android:textColor="?android:attr/textColorPrimary"
            android:textSize="@dimen/text_size_navdrawer"
            tools:background="@android:color/holo_green_light" />

    </LinearLayout>

    <View
        android:id="@+id/divider"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_above="@id/nav_settings"
        android:layout_centerVertical="true"
        android:background="?android:attr/listDivider"
        tools:background="@android:color/holo_red_dark" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/nav_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/divider"
        android:choiceMode="singleChoice"
        android:clipToPadding="false"
        android:divider="@android:color/transparent"
        android:layout_alignParentTop="true"
        android:dividerHeight="0dp"
        android:paddingBottom="@dimen/list_vertical_padding"
        android:paddingTop="8dp"
        android:scrollbarStyle="outsideOverlay"
        tools:listitem="@layout/nav_listitem" />

    <ProgressBar
        android:id="@+id/progressBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        style="?android:attr/progressBarStyle" />

</RelativeLayout>