]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/view_source_coordinatorlayout.xml
Add a context menu entry to Open in New Tab.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / view_source_coordinatorlayout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 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 <!-- `android:fitsSystemWindows="true"` moves the AppBar below the status bar.  When it is specified the theme should include `<item name="android:windowTranslucentStatus">true</item>` to make the status bar a transparent, darkened overlay.
22     Setting the layout root to be `focusableInTouchMode` prevents the URL toolbar from stealing focus on launch and opening the keyboard. -->
23 <androidx.coordinatorlayout.widget.CoordinatorLayout
24     android:id="@+id/view_source_coordinatorlayout"
25     xmlns:android="http://schemas.android.com/apk/res/android"
26     xmlns:tools="http://schemas.android.com/tools"
27     tools:context="com.stoutner.privacybrowser.activities.ViewSourceActivity"
28     android:layout_height="match_parent"
29     android:layout_width="match_parent"
30     android:fitsSystemWindows="true"
31     android:focusable="true"
32     android:focusableInTouchMode="true" >
33
34     <!-- The `LinearLayout` with `orientation="vertical"` moves the content below the app bar layout. -->
35     <LinearLayout
36         android:layout_height="match_parent"
37         android:layout_width="match_parent"
38         android:orientation="vertical" >
39
40         <!-- The `AppBarLayout` theme has to be defined here because the activity uses a `NoActionBar` theme. -->
41         <com.google.android.material.appbar.AppBarLayout
42             android:layout_height="wrap_content"
43             android:layout_width="match_parent"
44             android:theme="@style/PrivacyBrowserAppBarLight" >
45
46             <!-- The `FrameLayout` allows the toolbar and the progress bar to occupy the same space. -->
47             <FrameLayout
48                 android:layout_height="wrap_content"
49                 android:layout_width="match_parent" >
50
51                 <androidx.appcompat.widget.Toolbar
52                     android:id="@+id/view_source_toolbar"
53                     android:layout_height="wrap_content"
54                     android:layout_width="match_parent" />
55
56                 <!-- Android automatically uses a different, skinnier drawable with padding for indeterminate horizontal progress bars in API >= 21.
57                     They make this very difficult to override.  https://redmine.stoutner.com/issues/241
58                     `tools:ignore="UnusedAttribute"` removes the lint warning about `progressTint` and `progressBackgroundTint` not applying to API < 21. -->
59                 <ProgressBar
60                     android:id="@+id/progress_bar"
61                     style="?android:attr/progressBarStyleHorizontal"
62                     android:layout_height="wrap_content"
63                     android:layout_width="match_parent"
64                     android:minHeight="3dp"
65                     android:layout_gravity="bottom"
66                     android:visibility="gone"
67                     tools:ignore="UnusedAttribute" />
68             </FrameLayout>
69         </com.google.android.material.appbar.AppBarLayout>
70
71         <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
72             android:id="@+id/view_source_swiperefreshlayout"
73             android:layout_height="match_parent"
74             android:layout_width="match_parent">
75
76             <ScrollView
77                 android:layout_height="wrap_content"
78                 android:layout_width="match_parent" >
79
80                 <LinearLayout
81                     android:layout_height="wrap_content"
82                     android:layout_width="match_parent"
83                     android:orientation="vertical"
84                     android:layout_margin="10dp" >
85
86                     <!-- Request headers. -->
87                     <TextView
88                         android:layout_height="wrap_content"
89                         android:layout_width="match_parent"
90                         android:text="@string/request_headers"
91                         android:textAlignment="center"
92                         android:textSize="18sp"
93                         android:textColor="@color/blue_600"
94                         android:textStyle="bold" />
95
96                     <TextView
97                         android:id="@+id/request_headers"
98                         android:layout_height="wrap_content"
99                         android:layout_width="match_parent"
100                         android:textIsSelectable="true"
101                         android:layout_marginBottom="8dp" />
102
103                     <!-- Response message. -->
104                     <TextView
105                         android:layout_height="wrap_content"
106                         android:layout_width="match_parent"
107                         android:text="@string/response_message"
108                         android:textAlignment="center"
109                         android:textSize="18sp"
110                         android:textColor="@color/blue_600"
111                         android:textStyle="bold" />
112
113                     <TextView
114                         android:id="@+id/response_message"
115                         android:layout_height="wrap_content"
116                         android:layout_width="match_parent"
117                         android:textIsSelectable="true"
118                         android:layout_marginBottom="8dp" />
119
120                     <!-- Response headers. -->
121                     <TextView
122                         android:layout_height="wrap_content"
123                         android:layout_width="match_parent"
124                         android:text="@string/response_headers"
125                         android:textAlignment="center"
126                         android:textSize="18sp"
127                         android:textColor="@color/blue_600"
128                         android:textStyle="bold" />
129
130                     <TextView
131                         android:id="@+id/response_headers"
132                         android:layout_height="wrap_content"
133                         android:layout_width="match_parent"
134                         android:textIsSelectable="true"
135                         android:layout_marginBottom="8dp" />
136
137                     <!-- Response body. -->
138                     <TextView
139                         android:layout_height="wrap_content"
140                         android:layout_width="match_parent"
141                         android:text="@string/response_body"
142                         android:textAlignment="center"
143                         android:textSize="18sp"
144                         android:textColor="@color/blue_600"
145                         android:textStyle="bold" />
146
147                     <TextView
148                         android:id="@+id/response_body"
149                         android:layout_height="wrap_content"
150                         android:layout_width="match_parent"
151                         android:textIsSelectable="true" />
152                 </LinearLayout>
153             </ScrollView>
154         </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
155     </LinearLayout>
156 </androidx.coordinatorlayout.widget.CoordinatorLayout>