]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/layout/pinned_mismatch_tab_linearlayout.xml
First wrong button text in View Headers in night theme. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / pinned_mismatch_tab_linearlayout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2017-2022 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
7
8   Privacy Browser Android 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 Android 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 Android.  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     <!-- Domain. -->
29     <TextView
30         android:layout_height="wrap_content"
31         android:layout_width="wrap_content"
32         android:layout_marginTop="5dp"
33         android:text="@string/domain"
34         android:textAllCaps="true"
35         android:textStyle="bold"
36         android:textColor="@color/blue_title_text" />
37
38     <TextView
39         android:id="@+id/domain_name"
40         android:layout_height="wrap_content"
41         android:layout_width="wrap_content" />
42
43     <TextView
44         android:id="@+id/ip_addresses"
45         android:layout_height="wrap_content"
46         android:layout_width="wrap_content"/>
47
48
49     <!-- Issued To. -->
50     <TextView
51         android:layout_height="wrap_content"
52         android:layout_width="wrap_content"
53         android:layout_marginTop="15dp"
54         android:text="@string/issued_to"
55         android:textAllCaps="true"
56         android:textStyle="bold"
57         android:textColor="@color/blue_title_text" />
58
59     <TextView
60         android:id="@+id/issued_to_cname"
61         android:layout_height="wrap_content"
62         android:layout_width="wrap_content" />
63
64     <TextView
65         android:id="@+id/issued_to_oname"
66         android:layout_height="wrap_content"
67         android:layout_width="wrap_content" />
68
69     <TextView
70         android:id="@+id/issued_to_uname"
71         android:layout_height="wrap_content"
72         android:layout_width="wrap_content" />
73
74
75     <!-- Issued By. -->
76     <TextView
77         android:layout_height="wrap_content"
78         android:layout_width="wrap_content"
79         android:layout_marginTop="15dp"
80         android:text="@string/issued_by"
81         android:textAllCaps="true"
82         android:textStyle="bold"
83         android:textColor="@color/blue_title_text" />
84
85     <TextView
86         android:id="@+id/issued_by_cname"
87         android:layout_height="wrap_content"
88         android:layout_width="wrap_content" />
89
90     <TextView
91         android:id="@+id/issued_by_oname"
92         android:layout_height="wrap_content"
93         android:layout_width="wrap_content" />
94
95     <TextView
96         android:id="@+id/issued_by_uname"
97         android:layout_height="wrap_content"
98         android:layout_width="wrap_content" />
99
100
101     <!-- Valid Dates. -->
102     <TextView
103         android:layout_height="wrap_content"
104         android:layout_width="wrap_content"
105         android:layout_marginTop="15dp"
106         android:text="@string/valid_dates"
107         android:textAllCaps="true"
108         android:textStyle="bold"
109         android:textColor="@color/blue_title_text" />
110
111     <TextView
112         android:id="@+id/start_date"
113         android:layout_height="wrap_content"
114         android:layout_width="wrap_content" />
115
116     <TextView
117         android:id="@+id/end_date"
118         android:layout_height="wrap_content"
119         android:layout_width="wrap_content" />
120 </LinearLayout>