aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/navigation_drawer.xml
blob: 9398ede56e90ef0f74f28443cc2d9f2d657771d6 (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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@android:color/background_light" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/bookmarks_header"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/bookmarks"
            style="@style/drawer_header" />

        <ProgressBar
            android:id="@+id/bookmarks_loading"
            android:layout_width="@dimen/default_row_height"
            android:layout_height="@dimen/default_row_height"
            android:indeterminate="true"
            android:indeterminateOnly="true"
            android:visibility="gone" />

        <LinearLayout
            android:id="@+id/bookmarks_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/extra_margin"
            android:orientation="vertical" >

        </LinearLayout>

        <TextView
            android:id="@+id/history_header"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/history"
            style="@style/drawer_header" />

        <TextView
            android:id="@+id/history_empty"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/msgs_history_empty"
            android:paddingLeft="@dimen/extra_margin"
            style="@style/secondary_text_appearance" />

        <LinearLayout
            android:id="@+id/history_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/extra_margin"
            android:orientation="vertical" >
        </LinearLayout>
    </LinearLayout>

</ScrollView>