]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/main_framelayout.xml
b04c6bc86641f9de7c42d567a3a1c404a0cac63c
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / main_framelayout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2017,2019 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     xmlns:app="http://schemas.android.com/apk/res-auto"
24     xmlns:tools="http://schemas.android.com/tools"
25     android:id="@+id/root_framelayout"
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         <!-- The relative layout contains the AdView and the coordinator layout, which contains the rest of the views.
35             `android:fitsSystemWindows="true"` moves the toolbar below the system status bar but lets the drawers slide under the translucent status bar.
36             When it is specified, the theme should include `<item name="android:windowTranslucentStatus">true</item>`. -->
37         <RelativeLayout
38             android:id="@+id/main_content_relativelayout"
39             android:layout_height="match_parent"
40             android:layout_width="match_parent"
41             android:fitsSystemWindows="true" >
42
43             <!-- Include the AdView.  For the standard flavor, this just includes a TextView with `visibility="gone"`. -->
44             <include layout="@layout/adview" />
45
46             <!-- Setting the CoordinatorLayout to be `focusableInTouchMode` prevents the URL text box from stealing focus on launch and opening the keyboard. -->
47             <androidx.coordinatorlayout.widget.CoordinatorLayout
48                 android:layout_height="match_parent"
49                 android:layout_width="match_parent"
50                 android:layout_above="@id/adview"
51                 android:focusable="true"
52                 android:focusableInTouchMode="true" >
53
54                 <!-- The theme has to be defined here because the activity uses a `NoActionBar` theme. -->
55                 <com.google.android.material.appbar.AppBarLayout
56                     android:layout_height="wrap_content"
57                     android:layout_width="match_parent"
58                     android:theme="@style/PrivacyBrowserAppBarLight" >
59
60                     <androidx.appcompat.widget.Toolbar
61                         android:id="@+id/toolbar"
62                         android:layout_height="wrap_content"
63                         android:layout_width="match_parent"
64                         app:layout_scrollFlags="scroll|enterAlways|snap" />
65
66                     <HorizontalScrollView
67                         android:layout_height="wrap_content"
68                         android:layout_width="match_parent"
69                         app:layout_scrollFlags="scroll|enterAlways|snap" >
70
71                         <LinearLayout
72                             android:layout_height="wrap_content"
73                             android:layout_width="wrap_content"
74                             android:orientation="horizontal" >
75
76                             <com.google.android.material.tabs.TabLayout
77                                 android:id="@+id/tablayout"
78                                 android:layout_height="wrap_content"
79                                 android:layout_width="wrap_content"
80                                 app:tabMode="scrollable" />
81
82                             <ImageView
83                                 android:layout_height="wrap_content"
84                                 android:layout_width="wrap_content"
85                                 android:layout_gravity="center_vertical"
86                                 android:paddingStart="15dp"
87                                 android:paddingEnd="15dp"
88                                 android:src="@drawable/add_light"
89                                 android:tint="@color/gray_700"
90                                 android:onClick="addTab"
91                                 android:contentDescription="@string/add_tab" />
92                         </LinearLayout>
93                     </HorizontalScrollView>
94
95                     <!-- The find on page linear layout.  It is initially `visibility="gone"`. -->
96                     <LinearLayout
97                         android:id="@+id/find_on_page_linearlayout"
98                         android:layout_height="wrap_content"
99                         android:layout_width="match_parent"
100                         android:orientation="horizontal"
101                         android:visibility="gone" >
102
103                         <!-- `android:imeOptions="actionDone"` sets the keyboard to have a `check mark` key instead of a `new line` key. -->
104                         <EditText
105                             android:id="@+id/find_on_page_edittext"
106                             android:layout_height="wrap_content"
107                             android:layout_width="0dp"
108                             android:layout_weight="1"
109                             android:layout_marginStart="8dp"
110                             android:layout_marginEnd="4dp"
111                             android:hint="@string/find_on_page"
112                             android:lines="1"
113                             android:imeOptions="actionDone"
114                             android:inputType="text"
115                             tools:ignore="Autofill" />
116
117                         <TextView
118                             android:id="@+id/find_on_page_count_textview"
119                             android:layout_height="wrap_content"
120                             android:layout_width="wrap_content"
121                             android:layout_marginStart="4dp"
122                             android:layout_marginEnd="4dp"
123                             android:text="@string/zero_of_zero" />
124
125                         <ImageView
126                             android:id="@+id/find_previous"
127                             android:src="@drawable/previous"
128                             android:layout_width="35dp"
129                             android:layout_height="35dp"
130                             android:layout_marginStart="4dp"
131                             android:layout_marginEnd="4dp"
132                             android:layout_gravity="center_vertical"
133                             android:tint="?attr/findOnPageIconTintColor"
134                             android:contentDescription="@string/previous"
135                             android:onClick="findPreviousOnPage" />
136
137                         <ImageView
138                             android:id="@+id/find_next"
139                             android:src="@drawable/next"
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:tint="?attr/findOnPageIconTintColor"
146                             android:contentDescription="@string/next"
147                             android:onClick="findNextOnPage" />
148
149                         <ImageView
150                             android:id="@+id/close_find"
151                             android:src="@drawable/close_light"
152                             android:layout_width="35dp"
153                             android:layout_height="35dp"
154                             android:layout_marginStart="4dp"
155                             android:layout_marginEnd="8dp"
156                             android:layout_gravity="center_vertical"
157                             android:tint="?attr/findOnPageIconTintColor"
158                             android:contentDescription="@string/close"
159                             android:onClick="closeFindOnPage" />
160                     </LinearLayout>
161                 </com.google.android.material.appbar.AppBarLayout>
162
163                 <!-- `app:layout_behavior="@string/appbar_scrolling_view_behavior"` must be set on the sibling of AppBarLayout. -->
164                 <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
165                     android:id="@+id/swiperefreshlayout"
166                     android:layout_width="match_parent"
167                     android:layout_height="match_parent"
168                     app:layout_behavior="@string/appbar_scrolling_view_behavior" >
169
170                     <!-- The frame layout allows the progress bar to float above the WebView. -->
171                     <FrameLayout
172                         android:layout_width="match_parent"
173                         android:layout_height="match_parent">
174
175                         <androidx.viewpager.widget.ViewPager
176                             android:id="@+id/webviewpager"
177                             android:layout_width="match_parent"
178                             android:layout_height="match_parent" />
179
180                         <!-- `android:max` changes the maximum `ProgressBar` value from 10000 to 100 to match progress percentage.
181                             `android:layout_height="2dp"` works best for API >= 23, but `3dp` is required for visibility on API <= 22.
182                             `tools:ignore="UnusedAttribute"` removes the lint warning about `progressTint` and `progressBackgroundTint` not applying to API < 21. -->
183                         <ProgressBar
184                             android:id="@+id/progress_bar"
185                             style="?android:attr/progressBarStyleHorizontal"
186                             android:layout_height="3dp"
187                             android:layout_width="match_parent"
188                             android:max="100"
189                             android:progressTint="?attr/progressTintColor"
190                             android:progressBackgroundTint="@color/transparent"
191                             android:visibility="gone"
192                             tools:ignore="UnusedAttribute" />
193                     </FrameLayout>
194                 </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
195             </androidx.coordinatorlayout.widget.CoordinatorLayout>
196         </RelativeLayout>
197
198         <!-- The navigation drawer. -->
199         <com.google.android.material.navigation.NavigationView
200             android:id="@+id/navigationview"
201             android:layout_height="match_parent"
202             android:layout_width="wrap_content"
203             android:layout_gravity="start"
204             app:headerLayout="@layout/navigation_header"
205             app:menu="@menu/webview_navigation_menu"
206             app:itemIconTint="?attr/navigationIconTintColor" />
207
208         <!-- Include the bookmarks drawer, which varies based on screen width. -->
209         <include layout="@layout/bookmarks_drawer" />
210     </androidx.drawerlayout.widget.DrawerLayout>
211
212     <!-- `The full screen video frame layout is used to display full screen videos.  It is initially `android:visibility="gone"` to hide it from view. -->
213     <FrameLayout
214         android:id="@+id/full_screen_video_framelayout"
215         android:layout_height="match_parent"
216         android:layout_width="match_parent"
217         android:visibility="gone" />
218 </FrameLayout>