]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/bookmarks_drawer.xml
Add an option to block all third-party requests. https://redmine.stoutner.com/issues/209
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / bookmarks_drawer.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Copyright © 2017 Soren Stoutner <soren@stoutner.com>.
5
6 This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>>.
7
8 Privacy Browser is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 Privacy Browser is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <FrameLayout
22     xmlns:android="http://schemas.android.com/apk/res/android"
23     android:id="@+id/bookmarks_framelayout"
24     android:layout_height="match_parent"
25     android:layout_width="wrap_content"
26     android:layout_gravity="end" >
27
28     <LinearLayout
29         android:layout_height="match_parent"
30         android:layout_width="wrap_content"
31         android:orientation="vertical" >
32
33         <TextView
34             android:id="@+id/bookmarks_title_textview"
35             android:layout_height="wrap_content"
36             android:layout_width="match_parent"
37             android:paddingTop="35dp"
38             android:paddingBottom="8dp"
39             android:paddingStart="15dp"
40             android:paddingEnd="35dp"
41             android:textStyle="bold"
42             android:textSize="20sp"
43             android:background="?attr/navigationHeaderBackground"
44             android:textColor="?attr/navigationHeaderTextColor" />
45
46         <ListView
47             android:id="@+id/bookmarks_drawer_listview"
48             android:layout_height="0dp"
49             android:layout_width="match_parent"
50             android:layout_weight="1"
51             android:divider="@color/transparent"
52             android:dividerHeight="0dp" />
53     </LinearLayout>
54
55     <android.support.design.widget.FloatingActionButton
56         android:id="@+id/launch_bookmarks_activity_fab"
57         android:layout_height="wrap_content"
58         android:layout_width="wrap_content"
59         android:layout_gravity="bottom|end"
60         android:layout_marginEnd="16dp"
61         android:layout_marginBottom="155dp" />
62
63     <android.support.design.widget.FloatingActionButton
64         android:id="@+id/create_bookmark_folder_fab"
65         android:layout_height="wrap_content"
66         android:layout_width="wrap_content"
67         android:layout_gravity="bottom|end"
68         android:layout_marginEnd="16dp"
69         android:layout_marginBottom="85dp" />
70
71     <android.support.design.widget.FloatingActionButton
72         android:id="@+id/create_bookmark_fab"
73         android:layout_height="wrap_content"
74         android:layout_width="wrap_content"
75         android:layout_gravity="bottom|end"
76         android:layout_margin="16dp" />
77 </FrameLayout>