]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/pinned_ssl_certificate_mismatch_scrollview.xml
Fix a crach when editing a bookmark in the bookmarks drawer. https://redmine.stoutne...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / pinned_ssl_certificate_mismatch_scrollview.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 <ScrollView
22     xmlns:android="http://schemas.android.com/apk/res/android"
23     android:layout_height="wrap_content"
24     android:layout_width="wrap_content" >
25
26     <LinearLayout
27         android:layout_height="wrap_content"
28         android:layout_width="wrap_content"
29         android:padding="10dp"
30         android:orientation="vertical" >
31
32         <!-- Issued To. -->
33         <TextView
34             android:layout_height="wrap_content"
35             android:layout_width="wrap_content"
36             android:text="@string/issued_to"
37             android:textAllCaps="true"
38             android:textStyle="bold"
39             android:textColor="?attr/sslTitle" />
40
41         <TextView
42             android:id="@+id/issued_to_cname"
43             android:layout_height="wrap_content"
44             android:layout_width="wrap_content" />
45
46         <TextView
47             android:id="@+id/issued_to_oname"
48             android:layout_height="wrap_content"
49             android:layout_width="wrap_content" />
50
51         <TextView
52             android:id="@+id/issued_to_uname"
53             android:layout_height="wrap_content"
54             android:layout_width="wrap_content" />
55
56
57         <!-- Issued By. -->
58         <TextView
59             android:layout_height="wrap_content"
60             android:layout_width="wrap_content"
61             android:layout_marginTop="15dp"
62             android:text="@string/issued_by"
63             android:textAllCaps="true"
64             android:textStyle="bold"
65             android:textColor="?attr/sslTitle" />
66
67         <TextView
68             android:id="@+id/issued_by_cname"
69             android:layout_height="wrap_content"
70             android:layout_width="wrap_content" />
71
72         <TextView
73             android:id="@+id/issued_by_oname"
74             android:layout_height="wrap_content"
75             android:layout_width="wrap_content" />
76
77         <TextView
78             android:id="@+id/issued_by_uname"
79             android:layout_height="wrap_content"
80             android:layout_width="wrap_content" />
81
82
83         <!-- Valid Dates. -->
84         <TextView
85             android:layout_height="wrap_content"
86             android:layout_width="wrap_content"
87             android:layout_marginTop="15dp"
88             android:text="@string/valid_dates"
89             android:textAllCaps="true"
90             android:textStyle="bold"
91             android:textColor="?attr/sslTitle" />
92
93         <TextView
94             android:id="@+id/start_date"
95             android:layout_height="wrap_content"
96             android:layout_width="wrap_content" />
97
98         <TextView
99             android:id="@+id/end_date"
100             android:layout_height="wrap_content"
101             android:layout_width="wrap_content" />
102     </LinearLayout>
103 </ScrollView>