1 <?xml version="1.0" encoding="utf-8"?>
4 Copyright © 2017-2020 Soren Stoutner <soren@stoutner.com>.
6 This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>>.
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.
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.
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/>. -->
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="match_parent"
26 android:layout_gravity="end" >
29 android:layout_height="match_parent"
30 android:layout_width="match_parent"
31 android:orientation="vertical"
32 android:background="?android:attr/colorBackground" >
35 android:id="@+id/bookmarks_title_textview"
36 android:layout_height="wrap_content"
37 android:layout_width="match_parent"
38 android:textStyle="bold"
39 android:textSize="20sp"
40 android:textColor="?android:attr/textColorPrimary"
41 android:layout_margin="10dp" />
44 android:id="@+id/bookmarks_drawer_listview"
45 android:layout_height="0dp"
46 android:layout_width="match_parent"
47 android:layout_weight="1"
48 android:divider="@color/transparent"
49 android:dividerHeight="0dp" />
52 <com.google.android.material.floatingactionbutton.FloatingActionButton
53 android:id="@+id/launch_bookmarks_activity_fab"
54 android:layout_height="wrap_content"
55 android:layout_width="wrap_content"
56 android:layout_gravity="bottom|end"
57 android:layout_marginEnd="16dp"
58 android:layout_marginBottom="155dp"
59 android:src="@drawable/bookmarks"
60 android:tint="?attr/fabIconTintColor" />
62 <com.google.android.material.floatingactionbutton.FloatingActionButton
63 android:id="@+id/create_bookmark_folder_fab"
64 android:layout_height="wrap_content"
65 android:layout_width="wrap_content"
66 android:layout_gravity="bottom|end"
67 android:layout_marginEnd="16dp"
68 android:layout_marginBottom="85dp"
69 android:src="@drawable/create_folder"
70 android:tint="?attr/fabIconTintColor" />
72 <com.google.android.material.floatingactionbutton.FloatingActionButton
73 android:id="@+id/create_bookmark_fab"
74 android:layout_height="wrap_content"
75 android:layout_width="wrap_content"
76 android:layout_gravity="bottom|end"
77 android:layout_margin="16dp"
78 android:src="@drawable/create_bookmark"
79 android:tint="?attr/fabIconTintColor" />