]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/main_framelayout_bottom_appbar.xml
Fix scrolling of the bottom app bar. https://redmine.stoutner.com/issues/791
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / main_framelayout_bottom_appbar.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2017,2019-2021 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     android:id="@+id/root_framelayout"
23     xmlns:android="http://schemas.android.com/apk/res/android"
24     xmlns:app="http://schemas.android.com/apk/res-auto"
25     xmlns:tools="http://schemas.android.com/tools"
26     android:layout_height="match_parent"
27     android:layout_width="match_parent" >
28
29     <androidx.drawerlayout.widget.DrawerLayout
30         android:id="@+id/drawerlayout"
31         android:layout_height="match_parent"
32         android:layout_width="match_parent" >
33
34         <!-- Setting the CoordinatorLayout to be `focusableInTouchMode` prevents the URL text box from stealing focus on launch and opening the keyboard. -->
35         <androidx.coordinatorlayout.widget.CoordinatorLayout
36             android:id="@+id/coordinatorlayout"
37             android:layout_height="match_parent"
38             android:layout_width="match_parent"
39             android:focusable="true"
40             android:focusableInTouchMode="true" >
41
42                 <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
43                     android:id="@+id/swiperefreshlayout"
44                     android:layout_width="match_parent"
45                     android:layout_height="match_parent" >
46
47                     <com.stoutner.privacybrowser.views.NoSwipeViewPager
48                         android:id="@+id/webviewpager"
49                         android:layout_height="match_parent"
50                         android:layout_width="match_parent" />
51                 </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
52
53                 <!-- The app bar theme must be specified here because the activity uses a `NoActionBar` theme.  The background is set programmatically based on the proxy status.
54                     `app:layout_dodgeInsetEdges="bottom"` as a child of a coordinator layout moves the view above snackbars.-->
55                 <com.google.android.material.appbar.AppBarLayout
56                     android:id="@+id/appbar_layout"
57                     android:layout_height="wrap_content"
58                     android:layout_width="match_parent"
59                     android:theme="@style/PrivacyBrowserAppBar"
60                     android:layout_gravity="bottom"
61                     app:layout_dodgeInsetEdges="bottom" >
62
63                     <!-- The tab linear layout.  It sets the background to the right of the add tab button.
64                         It is initially `visibility="gone"` so it doesn't display while the blocklists are loading. -->
65                     <LinearLayout
66                         android:id="@+id/tabs_linearlayout"
67                         android:layout_height="wrap_content"
68                         android:layout_width="wrap_content"
69                         android:orientation="horizontal"
70                         android:visibility="gone" >
71
72                         <!-- `android:background="?attr/selectableItemBackground"` adds a ripple animation on touch. -->
73                         <ImageView
74                             android:layout_height="match_parent"
75                             android:layout_width="wrap_content"
76                             android:layout_gravity="center_vertical"
77                             android:paddingStart="10dp"
78                             android:paddingEnd="10dp"
79                             android:src="@drawable/close_day"
80                             android:background="?attr/selectableItemBackground"
81                             android:onClick="closeTab"
82                             android:contentDescription="@string/close_tab"
83                             app:tint="?attr/addTabIconTintColor" />
84
85                         <com.google.android.material.tabs.TabLayout
86                             android:id="@+id/tablayout"
87                             android:layout_height="wrap_content"
88                             android:layout_width="0dp"
89                             android:layout_weight="1"
90                             app:tabMode="scrollable" />
91
92                         <!-- `android:background="?attr/selectableItemBackground"` adds a ripple animation on touch. -->
93                         <ImageView
94                             android:layout_height="match_parent"
95                             android:layout_width="wrap_content"
96                             android:layout_gravity="center_vertical"
97                             android:paddingStart="10dp"
98                             android:paddingEnd="10dp"
99                             android:src="@drawable/add"
100                             android:background="?attr/selectableItemBackground"
101                             android:onClick="addTab"
102                             android:contentDescription="@string/add_tab"
103                             app:tint="?attr/addTabIconTintColor" />
104                     </LinearLayout>
105
106                     <!-- The find on page linear layout.  It is initially `visibility="gone"` so it doesn't display while the blocklists are loading. -->
107                     <LinearLayout
108                         android:id="@+id/find_on_page_linearlayout"
109                         android:layout_height="wrap_content"
110                         android:layout_width="match_parent"
111                         android:orientation="horizontal"
112                         android:visibility="gone" >
113
114                         <!-- `android:imeOptions="actionDone"` sets the keyboard to have a `check mark` key instead of a `new line` key. -->
115                         <EditText
116                             android:id="@+id/find_on_page_edittext"
117                             android:layout_height="wrap_content"
118                             android:layout_width="0dp"
119                             android:layout_weight="1"
120                             android:layout_marginStart="8dp"
121                             android:layout_marginEnd="4dp"
122                             android:hint="@string/find_on_page"
123                             android:lines="1"
124                             android:imeOptions="actionDone"
125                             android:inputType="text"
126                             tools:ignore="Autofill" />
127
128                         <TextView
129                             android:id="@+id/find_on_page_count_textview"
130                             android:layout_height="wrap_content"
131                             android:layout_width="wrap_content"
132                             android:layout_marginStart="4dp"
133                             android:layout_marginEnd="4dp"
134                             android:text="@string/zero_of_zero" />
135
136                         <!-- `android:background="?attr/selectableItemBackground"` adds a ripple animation on touch. -->
137                         <ImageView
138                             android:id="@+id/find_previous"
139                             android:src="@drawable/previous"
140                             android:layout_width="35dp"
141                             android:layout_height="35dp"
142                             android:layout_marginStart="4dp"
143                             android:layout_marginEnd="4dp"
144                             android:layout_gravity="center_vertical"
145                             android:background="?attr/selectableItemBackground"
146                             android:contentDescription="@string/previous"
147                             android:onClick="findPreviousOnPage"
148                             app:tint="?attr/findOnPageIconTintColor" />
149
150                         <!-- `android:background="?attr/selectableItemBackground"` adds a ripple animation on touch. -->
151                         <ImageView
152                             android:id="@+id/find_next"
153                             android:src="@drawable/next"
154                             android:layout_width="35dp"
155                             android:layout_height="35dp"
156                             android:layout_marginStart="4dp"
157                             android:layout_marginEnd="4dp"
158                             android:layout_gravity="center_vertical"
159                             android:background="?attr/selectableItemBackground"
160                             android:contentDescription="@string/next"
161                             android:onClick="findNextOnPage"
162                             app:tint="?attr/findOnPageIconTintColor" />
163
164                         <!-- `android:background="?attr/selectableItemBackground"` adds a ripple animation on touch. -->
165                         <ImageView
166                             android:id="@+id/close_find"
167                             android:src="@drawable/close_day"
168                             android:layout_width="35dp"
169                             android:layout_height="35dp"
170                             android:layout_marginStart="4dp"
171                             android:layout_marginEnd="8dp"
172                             android:layout_gravity="center_vertical"
173                             android:background="?attr/selectableItemBackground"
174                             android:contentDescription="@string/close"
175                             android:onClick="closeFindOnPage"
176                             app:tint="?attr/findOnPageIconTintColor" />
177                     </LinearLayout>
178
179                     <!-- The toolbar.  It is initially `visibility="gone"` so it doesn't display while the blocklists are loading. -->
180                     <androidx.appcompat.widget.Toolbar
181                         android:id="@+id/toolbar"
182                         android:layout_height="wrap_content"
183                         android:layout_width="match_parent"
184                         android:visibility="gone" />
185                 </com.google.android.material.appbar.AppBarLayout>
186         </androidx.coordinatorlayout.widget.CoordinatorLayout>
187
188         <!-- The navigation drawer. -->
189         <com.google.android.material.navigation.NavigationView
190             android:id="@+id/navigationview"
191             android:layout_height="match_parent"
192             android:layout_width="wrap_content"
193             android:layout_gravity="start"
194             app:menu="@menu/webview_navigation_menu_bottom_appbar"
195             app:itemIconTint="?attr/navigationIconTintColor" />
196
197         <!-- Include the bookmarks drawer, which varies based on screen width. -->
198         <include layout="@layout/bookmarks_drawer_bottom_appbar" />
199     </androidx.drawerlayout.widget.DrawerLayout>
200
201     <!-- The full screen video frame layout is used to display full screen videos.  It is initially `android:visibility="gone"` to hide it from view. -->
202     <FrameLayout
203         android:id="@+id/full_screen_video_framelayout"
204         android:layout_height="match_parent"
205         android:layout_width="match_parent"
206         android:visibility="gone" />
207
208     <!-- The loading blocklists relative layout displays when the app first starts.  It is hidden once the blocklists are populated. -->
209     <RelativeLayout
210         android:id="@+id/loading_blocklists_relativelayout"
211         android:layout_width="match_parent"
212         android:layout_height="match_parent">
213
214         <ImageView
215             android:id="@+id/privacy_browser_logo"
216             android:layout_height="256dp"
217             android:layout_width="256dp"
218             android:layout_centerInParent="true"
219             android:src="@drawable/privacy_browser_foreground"
220             tools:ignore="contentDescription" />
221
222         <TextView
223             android:id="@+id/loading_blocklist_textview"
224             android:layout_width="wrap_content"
225             android:layout_height="wrap_content"
226             android:layout_below="@id/privacy_browser_logo"
227             android:layout_centerHorizontal="true"
228             android:layout_margin="10dp"
229             android:textSize="16sp"
230             android:textAlignment="center"
231             android:textColor="?android:attr/textColorPrimary" />
232     </RelativeLayout>
233 </FrameLayout>