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