1 <?xml version="1.0" encoding="utf-8"?>
4 Copyright 2017-2022 Soren Stoutner <soren@stoutner.com>.
6 This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
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.
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.
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/>. -->
21 <ScrollView android:id="@+id/domain_settings_scrollview"
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 xmlns:tools="http://schemas.android.com/tools"
24 android:layout_height="wrap_content"
25 android:layout_width="match_parent"
26 android:focusable="true"
27 android:focusableInTouchMode="true"
28 android:descendantFocusability="beforeDescendants"
29 xmlns:app="http://schemas.android.com/apk/res-auto">
32 android:layout_height="wrap_content"
33 android:layout_width="match_parent"
34 android:layout_margin="12dp"
35 android:orientation="vertical"
36 android:divider="?android:attr/dividerVertical" >
40 android:layout_height="wrap_content"
41 android:layout_width="match_parent"
42 android:orientation="vertical" >
45 android:layout_height="wrap_content"
46 android:layout_width="match_parent"
47 android:orientation="horizontal" >
50 android:layout_height="wrap_content"
51 android:layout_width="wrap_content"
52 android:layout_marginEnd="10dp"
53 android:layout_marginBottom="12dp"
54 android:layout_gravity="bottom"
55 android:src="@drawable/domains"
56 app:tint="@color/blue_icon"
57 tools:ignore="contentDescription" />
59 <!-- `TextInputLayout` makes the `android:hint` float above the `EditText`. -->
60 <com.google.android.material.textfield.TextInputLayout
61 android:layout_height="wrap_content"
62 android:layout_width="match_parent"
63 android:layout_marginStart="6dp" >
65 <!-- `android:inputType="textUri"` disables spell check in the `EditText`. -->
66 <com.google.android.material.textfield.TextInputEditText
67 android:id="@+id/domain_settings_name_edittext"
68 android:layout_width="match_parent"
69 android:layout_height="wrap_content"
70 android:hint="@string/domain_name"
71 android:inputType="textUri" />
72 </com.google.android.material.textfield.TextInputLayout>
76 android:layout_height="wrap_content"
77 android:layout_width="match_parent"
78 android:text="@string/domain_name_instructions"
79 android:textSize="12sp"
80 android:layout_marginStart="43dp"
81 android:layout_marginBottom="14dp" />
86 android:layout_height="wrap_content"
87 android:layout_width="match_parent"
88 android:orientation="horizontal" >
91 android:id="@+id/javascript_imageview"
92 android:layout_height="wrap_content"
93 android:layout_width="wrap_content"
94 android:layout_marginTop="1dp"
95 android:layout_marginEnd="10dp"
96 android:layout_gravity="center_vertical"
97 tools:ignore="contentDescription" />
99 <androidx.appcompat.widget.SwitchCompat
100 android:id="@+id/javascript_switch"
101 android:layout_height="wrap_content"
102 android:layout_width="match_parent"
103 android:layout_marginStart="8dp"
104 android:layout_marginTop="14dp"
105 android:layout_marginBottom="14dp"
106 android:text="@string/javascript"
107 android:textColor="?android:textColorPrimary"
108 android:textSize="18sp" />
113 android:layout_height="wrap_content"
114 android:layout_width="match_parent"
115 android:orientation="horizontal" >
118 android:id="@+id/cookies_imageview"
119 android:layout_height="wrap_content"
120 android:layout_width="wrap_content"
121 android:layout_marginTop="1dp"
122 android:layout_marginEnd="10dp"
123 android:layout_gravity="center_vertical"
124 android:src="@drawable/cookies_enabled"
125 app:tint="@color/yellow_icon_selector"
126 tools:ignore="contentDescription" />
128 <androidx.appcompat.widget.SwitchCompat
129 android:id="@+id/cookies_switch"
130 android:layout_height="wrap_content"
131 android:layout_width="match_parent"
132 android:layout_marginStart="8dp"
133 android:layout_marginTop="14dp"
134 android:layout_marginBottom="14dp"
135 android:text="@string/cookies"
136 android:textColor="?android:textColorPrimary"
137 android:textSize="18sp" />
140 <!-- DOM Storage. -->
142 android:layout_height="wrap_content"
143 android:layout_width="match_parent"
144 android:orientation="horizontal" >
147 android:id="@+id/dom_storage_imageview"
148 android:layout_height="wrap_content"
149 android:layout_width="wrap_content"
150 android:layout_marginTop="1dp"
151 android:layout_marginEnd="10dp"
152 android:layout_gravity="center_vertical"
153 android:src="@drawable/dom_storage_enabled"
154 app:tint="@color/yellow_icon_selector"
155 tools:ignore="contentDescription" />
157 <androidx.appcompat.widget.SwitchCompat
158 android:id="@+id/dom_storage_switch"
159 android:layout_height="wrap_content"
160 android:layout_width="match_parent"
161 android:layout_marginStart="8dp"
162 android:layout_marginTop="14dp"
163 android:layout_marginBottom="14dp"
164 android:text="@string/dom_storage_preference"
165 android:textColor="?android:textColorPrimary"
166 android:textSize="18sp" />
171 android:layout_height="wrap_content"
172 android:layout_width="match_parent"
173 android:orientation="horizontal" >
176 android:id="@+id/form_data_imageview"
177 android:layout_height="wrap_content"
178 android:layout_width="wrap_content"
179 android:layout_marginTop="1dp"
180 android:layout_marginEnd="10dp"
181 android:layout_gravity="center_vertical"
182 android:src="@drawable/form_data_enabled"
183 app:tint="@color/yellow_icon_selector"
184 tools:ignore="contentDescription" />
186 <androidx.appcompat.widget.SwitchCompat
187 android:id="@+id/form_data_switch"
188 android:layout_height="wrap_content"
189 android:layout_width="match_parent"
190 android:layout_marginStart="8dp"
191 android:layout_marginTop="14dp"
192 android:layout_marginBottom="14dp"
193 android:text="@string/form_data"
194 android:textColor="?android:textColorPrimary"
195 android:textSize="18sp" />
200 android:layout_height="wrap_content"
201 android:layout_width="match_parent"
202 android:orientation="horizontal" >
205 android:id="@+id/easylist_imageview"
206 android:layout_height="wrap_content"
207 android:layout_width="wrap_content"
208 android:layout_marginTop="1dp"
209 android:layout_marginEnd="10dp"
210 android:layout_gravity="center_vertical"
211 android:src="@drawable/block_ads_enabled"
212 app:tint="@color/blue_icon_selector"
213 tools:ignore="contentDescription" />
215 <androidx.appcompat.widget.SwitchCompat
216 android:id="@+id/easylist_switch"
217 android:layout_height="wrap_content"
218 android:layout_width="match_parent"
219 android:layout_marginStart="8dp"
220 android:layout_marginTop="14dp"
221 android:layout_marginBottom="14dp"
222 android:text="@string/easylist"
223 android:textColor="?android:textColorPrimary"
224 android:textSize="18sp" />
227 <!-- EasyPrivacy. -->
229 android:layout_height="wrap_content"
230 android:layout_width="match_parent"
231 android:orientation="horizontal" >
234 android:id="@+id/easyprivacy_imageview"
235 android:layout_height="wrap_content"
236 android:layout_width="wrap_content"
237 android:layout_marginTop="1dp"
238 android:layout_marginEnd="10dp"
239 android:layout_gravity="center_vertical"
240 android:src="@drawable/block_tracking_enabled"
241 app:tint="@color/blue_icon_selector"
242 tools:ignore="contentDescription" />
244 <androidx.appcompat.widget.SwitchCompat
245 android:id="@+id/easyprivacy_switch"
246 android:layout_height="wrap_content"
247 android:layout_width="match_parent"
248 android:layout_marginStart="8dp"
249 android:layout_marginTop="14dp"
250 android:layout_marginBottom="14dp"
251 android:text="@string/easyprivacy"
252 android:textColor="?android:textColorPrimary"
253 android:textSize="18sp" />
256 <!-- Fanboy's Annoyance List. -->
258 android:layout_height="wrap_content"
259 android:layout_width="match_parent"
260 android:orientation="horizontal" >
263 android:id="@+id/fanboys_annoyance_list_imageview"
264 android:layout_height="wrap_content"
265 android:layout_width="wrap_content"
266 android:layout_marginTop="1dp"
267 android:layout_marginEnd="10dp"
268 android:layout_gravity="center_vertical"
269 android:src="@drawable/social_media_enabled"
270 app:tint="@color/blue_icon_selector"
271 tools:ignore="contentDescription" />
273 <androidx.appcompat.widget.SwitchCompat
274 android:id="@+id/fanboys_annoyance_list_switch"
275 android:layout_height="wrap_content"
276 android:layout_width="match_parent"
277 android:layout_marginStart="8dp"
278 android:layout_marginTop="14dp"
279 android:layout_marginBottom="14dp"
280 android:text="@string/fanboys_annoyance_list"
281 android:textColor="?android:textColorPrimary"
282 android:textSize="18sp" />
285 <!-- Fanboy's Social Blocking List. -->
287 android:layout_height="wrap_content"
288 android:layout_width="match_parent"
289 android:orientation="horizontal" >
292 android:id="@+id/fanboys_social_blocking_list_imageview"
293 android:layout_height="wrap_content"
294 android:layout_width="wrap_content"
295 android:layout_marginTop="1dp"
296 android:layout_marginEnd="10dp"
297 android:layout_gravity="center_vertical"
298 android:src="@drawable/social_media_enabled"
299 app:tint="@color/blue_icon_selector"
300 tools:ignore="contentDescription" />
302 <androidx.appcompat.widget.SwitchCompat
303 android:id="@+id/fanboys_social_blocking_list_switch"
304 android:layout_height="wrap_content"
305 android:layout_width="match_parent"
306 android:layout_marginStart="8dp"
307 android:layout_marginTop="14dp"
308 android:layout_marginBottom="14dp"
309 android:text="@string/fanboys_social_blocking_list"
310 android:textColor="?android:textColorPrimary"
311 android:textSize="18sp" />
316 android:layout_height="wrap_content"
317 android:layout_width="match_parent"
318 android:orientation="horizontal" >
321 android:id="@+id/ultralist_imageview"
322 android:layout_height="wrap_content"
323 android:layout_width="wrap_content"
324 android:layout_marginTop="1dp"
325 android:layout_marginEnd="10dp"
326 android:layout_gravity="center_vertical"
327 android:src="@drawable/block_ads_enabled"
328 app:tint="@color/blue_icon_selector"
329 tools:ignore="contentDescription" />
331 <androidx.appcompat.widget.SwitchCompat
332 android:id="@+id/ultralist_switch"
333 android:layout_height="wrap_content"
334 android:layout_width="match_parent"
335 android:layout_marginStart="8dp"
336 android:layout_marginTop="14dp"
337 android:layout_marginBottom="14dp"
338 android:text="@string/ultralist"
339 android:textColor="?android:textColorPrimary"
340 android:textSize="18sp" />
343 <!-- UltraPrivacy. -->
345 android:layout_height="wrap_content"
346 android:layout_width="match_parent"
347 android:orientation="horizontal" >
350 android:id="@+id/ultraprivacy_imageview"
351 android:layout_height="wrap_content"
352 android:layout_width="wrap_content"
353 android:layout_marginTop="1dp"
354 android:layout_marginEnd="10dp"
355 android:layout_gravity="center_vertical"
356 android:src="@drawable/block_tracking_enabled"
357 app:tint="@color/blue_icon_selector"
358 tools:ignore="contentDescription" />
360 <androidx.appcompat.widget.SwitchCompat
361 android:id="@+id/ultraprivacy_switch"
362 android:layout_height="wrap_content"
363 android:layout_width="match_parent"
364 android:layout_marginStart="8dp"
365 android:layout_marginTop="14dp"
366 android:layout_marginBottom="14dp"
367 android:text="@string/ultraprivacy"
368 android:textColor="?android:textColorPrimary"
369 android:textSize="18sp" />
372 <!-- Block All Third Party Requests. -->
374 android:layout_height="wrap_content"
375 android:layout_width="match_parent"
376 android:orientation="horizontal" >
379 android:id="@+id/block_all_third_party_requests_imageview"
380 android:layout_height="wrap_content"
381 android:layout_width="wrap_content"
382 android:layout_marginTop="1dp"
383 android:layout_marginEnd="10dp"
384 android:layout_gravity="center_vertical"
385 android:src="@drawable/block_all_third_party_requests_enabled"
386 app:tint="@color/blue_icon_selector"
387 tools:ignore="contentDescription" />
389 <androidx.appcompat.widget.SwitchCompat
390 android:id="@+id/block_all_third_party_requests_switch"
391 android:layout_height="wrap_content"
392 android:layout_width="match_parent"
393 android:layout_marginStart="8dp"
394 android:layout_marginTop="14dp"
395 android:layout_marginBottom="14dp"
396 android:text="@string/block_all_third_party_requests"
397 android:textColor="?android:textColorPrimary"
398 android:textSize="18sp" />
403 android:layout_height="wrap_content"
404 android:layout_width="match_parent"
405 android:orientation="vertical"
406 android:layout_marginTop="14dp"
407 android:layout_marginBottom="14dp" >
410 android:layout_height="wrap_content"
411 android:layout_width="match_parent"
412 android:orientation="horizontal" >
415 android:layout_height="wrap_content"
416 android:layout_width="wrap_content"
417 android:layout_marginTop="1dp"
418 android:layout_marginEnd="10dp"
419 android:layout_gravity="center_vertical"
420 android:src="@drawable/user_agent"
421 app:tint="@color/blue_icon"
422 android:contentDescription="@string/user_agent" />
425 android:id="@+id/user_agent_spinner"
426 android:layout_height="wrap_content"
427 android:layout_width="match_parent" />
431 android:id="@+id/user_agent_textview"
432 android:layout_height="wrap_content"
433 android:layout_width="match_parent"
434 android:layout_marginStart="45dp"
435 android:layout_marginEnd="36dp"
436 android:textSize="13sp" />
439 android:id="@+id/custom_user_agent_edittext"
440 android:layout_height="wrap_content"
441 android:layout_width="match_parent"
442 android:layout_marginStart="40dp"
443 android:layout_marginEnd="60dp"
444 android:inputType="textUri"
445 android:hint="@string/custom_user_agent"
446 android:importantForAutofill="no" />
451 android:layout_height="wrap_content"
452 android:layout_width="match_parent"
453 android:orientation="vertical"
454 android:layout_marginTop="14dp"
455 android:layout_marginBottom="14dp" >
458 android:layout_height="wrap_content"
459 android:layout_width="match_parent"
460 android:orientation="horizontal" >
463 android:layout_height="wrap_content"
464 android:layout_width="wrap_content"
465 android:layout_marginTop="1dp"
466 android:layout_marginEnd="10dp"
467 android:layout_gravity="center_vertical"
468 android:src="@drawable/font_size"
469 app:tint="@color/blue_icon"
470 android:contentDescription="@string/font_size" />
473 android:id="@+id/font_size_spinner"
474 android:layout_height="wrap_content"
475 android:layout_width="match_parent" />
479 android:id="@+id/default_font_size_textview"
480 android:layout_height="wrap_content"
481 android:layout_width="match_parent"
482 android:layout_marginStart="45dp"
483 android:layout_marginEnd="36dp"
484 android:textSize="13sp" />
487 android:id="@+id/custom_font_size_edittext"
488 android:layout_height="wrap_content"
489 android:layout_width="match_parent"
490 android:layout_marginStart="40dp"
491 android:layout_marginEnd="60dp"
492 android:inputType="number"
493 android:hint="@string/font_size"
494 android:importantForAutofill="no" />
497 <!-- Swipe to Refresh. -->
499 android:layout_height="wrap_content"
500 android:layout_width="match_parent"
501 android:orientation="vertical"
502 android:layout_marginTop="14dp"
503 android:layout_marginBottom="14dp" >
506 android:layout_height="wrap_content"
507 android:layout_width="match_parent"
508 android:orientation="horizontal" >
511 android:id="@+id/swipe_to_refresh_imageview"
512 android:layout_height="wrap_content"
513 android:layout_width="wrap_content"
514 android:layout_marginTop="1dp"
515 android:layout_marginEnd="10dp"
516 android:layout_gravity="center_vertical"
517 android:src="@drawable/refresh_enabled"
518 app:tint="@color/blue_icon_selector"
519 android:contentDescription="@string/swipe_to_refresh" />
522 android:id="@+id/swipe_to_refresh_spinner"
523 android:layout_height="wrap_content"
524 android:layout_width="match_parent" />
528 android:id="@+id/swipe_to_refresh_textview"
529 android:layout_height="wrap_content"
530 android:layout_width="match_parent"
531 android:layout_marginStart="45dp"
532 android:layout_marginEnd="36dp"
533 android:textSize="13sp" />
536 <!-- WebView Theme. -->
538 android:id="@+id/webview_theme_linearlayout"
539 android:layout_height="wrap_content"
540 android:layout_width="match_parent"
541 android:orientation="vertical"
542 android:layout_marginTop="14dp"
543 android:layout_marginBottom="14dp" >
546 android:layout_height="wrap_content"
547 android:layout_width="match_parent"
548 android:orientation="horizontal" >
551 android:id="@+id/webview_theme_imageview"
552 android:layout_height="wrap_content"
553 android:layout_width="wrap_content"
554 android:layout_marginTop="1dp"
555 android:layout_marginEnd="10dp"
556 android:layout_gravity="center_vertical"
557 android:src="@drawable/webview_light_theme"
558 app:tint="@color/blue_icon_selector"
559 android:contentDescription="@string/webview_theme" />
562 android:id="@+id/webview_theme_spinner"
563 android:layout_height="wrap_content"
564 android:layout_width="match_parent" />
568 android:id="@+id/webview_theme_textview"
569 android:layout_height="wrap_content"
570 android:layout_width="match_parent"
571 android:layout_marginStart="45dp"
572 android:layout_marginEnd="36dp"
573 android:textSize="13sp" />
576 <!-- Wide Viewport. -->
578 android:layout_height="wrap_content"
579 android:layout_width="match_parent"
580 android:orientation="vertical"
581 android:layout_marginTop="14dp"
582 android:layout_marginBottom="14dp" >
585 android:layout_height="wrap_content"
586 android:layout_width="match_parent"
587 android:orientation="horizontal" >
590 android:id="@+id/wide_viewport_imageview"
591 android:layout_height="wrap_content"
592 android:layout_width="wrap_content"
593 android:layout_marginTop="1dp"
594 android:layout_marginEnd="10dp"
595 android:layout_gravity="center_vertical"
596 android:src="@drawable/wide_viewport_enabled"
597 app:tint="@color/blue_icon_selector"
598 android:contentDescription="@string/wide_viewport" />
601 android:id="@+id/wide_viewport_spinner"
602 android:layout_height="wrap_content"
603 android:layout_width="match_parent" />
607 android:id="@+id/wide_viewport_textview"
608 android:layout_height="wrap_content"
609 android:layout_width="match_parent"
610 android:layout_marginStart="45dp"
611 android:layout_marginEnd="36dp"
612 android:textSize="13sp" />
615 <!-- Display Images. -->
617 android:layout_height="wrap_content"
618 android:layout_width="match_parent"
619 android:orientation="vertical"
620 android:layout_marginTop="14dp"
621 android:layout_marginBottom="14dp" >
624 android:layout_height="wrap_content"
625 android:layout_width="match_parent"
626 android:orientation="horizontal" >
629 android:id="@+id/display_webpage_images_imageview"
630 android:layout_height="wrap_content"
631 android:layout_width="wrap_content"
632 android:layout_marginTop="1dp"
633 android:layout_marginEnd="10dp"
634 android:layout_gravity="center_vertical"
635 android:src="@drawable/images_enabled"
636 app:tint="@color/blue_icon_selector"
637 android:contentDescription="@string/display_webpage_images" />
640 android:id="@+id/display_webpage_images_spinner"
641 android:layout_height="wrap_content"
642 android:layout_width="match_parent" />
646 android:id="@+id/display_webpage_images_textview"
647 android:layout_height="wrap_content"
648 android:layout_width="match_parent"
649 android:layout_marginStart="45dp"
650 android:layout_marginEnd="36dp"
651 android:textSize="13sp" />
654 <!-- Pinned SSL Certificate -->
656 android:layout_height="wrap_content"
657 android:layout_width="match_parent"
658 android:orientation="vertical"
659 android:layout_marginTop="18dp"
660 android:layout_marginBottom="18dp" >
664 android:layout_height="wrap_content"
665 android:layout_width="match_parent"
666 android:orientation="horizontal" >
669 android:id="@+id/pinned_ssl_certificate_imageview"
670 android:layout_height="wrap_content"
671 android:layout_width="wrap_content"
672 android:layout_marginTop="1dp"
673 android:layout_marginEnd="10dp"
674 android:layout_gravity="center_vertical"
675 android:src="@drawable/ssl_certificate"
676 app:tint="@color/blue_icon_selector"
677 tools:ignore="contentDescription" />
679 <androidx.appcompat.widget.SwitchCompat
680 android:id="@+id/pinned_ssl_certificate_switch"
681 android:layout_height="wrap_content"
682 android:layout_width="match_parent"
683 android:layout_marginStart="8dp"
684 android:text="@string/pinned_ssl_certificate"
685 android:textColor="?android:textColorPrimary"
686 android:textSize="18sp"
687 tools:ignore="TooManyViews" />
690 <!-- Saved Certificate -->
691 <androidx.cardview.widget.CardView
692 android:id="@+id/saved_ssl_certificate_cardview"
693 android:layout_height="wrap_content"
694 android:layout_width="match_parent"
695 android:layout_marginTop="10dp"
696 android:layout_marginStart="10dp"
697 android:layout_marginEnd="10dp" >
700 android:id="@+id/saved_ssl_certificate_linearlayout"
701 android:layout_height="wrap_content"
702 android:layout_width="match_parent"
703 android:orientation="vertical"
704 android:padding="10dp" >
707 android:id="@+id/saved_ssl_certificate_radiobutton"
708 android:layout_height="wrap_content"
709 android:layout_width="match_parent"
710 android:text="@string/saved_ssl_certificate"
711 android:textSize="17sp"
712 android:textAllCaps="true"
713 android:textStyle="bold"
714 android:textColor="?android:textColorPrimary" />
717 android:layout_height="wrap_content"
718 android:layout_width="match_parent"
719 android:layout_marginStart="32dp"
720 android:orientation="vertical" >
722 <!-- Saved Certificate Issued To. -->
724 android:layout_height="wrap_content"
725 android:layout_width="match_parent"
726 android:text="@string/issued_to"
727 android:textAllCaps="true"
728 android:textStyle="bold"
729 android:textColor="@color/blue_title_text" />
732 android:id="@+id/saved_ssl_certificate_issued_to_cname"
733 android:layout_height="wrap_content"
734 android:layout_width="match_parent" />
737 android:id="@+id/saved_ssl_certificate_issued_to_oname"
738 android:layout_height="wrap_content"
739 android:layout_width="match_parent" />
742 android:id="@+id/saved_ssl_certificate_issued_to_uname"
743 android:layout_height="wrap_content"
744 android:layout_width="match_parent"/>
746 <!-- Saved Certificate Issued By. -->
748 android:layout_height="wrap_content"
749 android:layout_width="match_parent"
750 android:layout_marginTop="15dp"
751 android:text="@string/issued_by"
752 android:textAllCaps="true"
753 android:textStyle="bold"
754 android:textColor="@color/blue_title_text"/>
757 android:id="@+id/saved_ssl_certificate_issued_by_cname"
758 android:layout_height="wrap_content"
759 android:layout_width="match_parent" />
762 android:id="@+id/saved_ssl_certificate_issued_by_oname"
763 android:layout_height="wrap_content"
764 android:layout_width="match_parent" />
767 android:id="@+id/saved_ssl_certificate_issued_by_uname"
768 android:layout_height="wrap_content"
769 android:layout_width="match_parent" />
771 <!-- Saved Certificate Valid Dates. -->
773 android:layout_height="wrap_content"
774 android:layout_width="match_parent"
775 android:layout_marginTop="15dp"
776 android:text="@string/valid_dates"
777 android:textAllCaps="true"
778 android:textStyle="bold"
779 android:textColor="@color/blue_title_text"/>
782 android:id="@+id/saved_ssl_certificate_start_date"
783 android:layout_height="wrap_content"
784 android:layout_width="match_parent" />
787 android:id="@+id/saved_ssl_certificate_end_date"
788 android:layout_height="wrap_content"
789 android:layout_width="match_parent" />
792 </androidx.cardview.widget.CardView>
794 <!-- Current Website Certificate -->
795 <androidx.cardview.widget.CardView
796 android:id="@+id/current_website_certificate_cardview"
797 android:layout_height="wrap_content"
798 android:layout_width="match_parent"
799 android:layout_margin="10dp" >
802 android:id="@+id/current_website_certificate_linearlayout"
803 android:layout_height="wrap_content"
804 android:layout_width="match_parent"
805 android:orientation="vertical"
806 android:padding="10dp" >
809 android:id="@+id/current_website_certificate_radiobutton"
810 android:layout_height="wrap_content"
811 android:layout_width="match_parent"
812 android:text="@string/current_website_ssl_certificate"
813 android:textSize="17sp"
814 android:textAllCaps="true"
815 android:textStyle="bold"
816 android:textColor="?android:textColorPrimary" />
819 android:layout_height="wrap_content"
820 android:layout_width="match_parent"
821 android:layout_marginStart="32dp"
822 android:orientation="vertical" >
824 <!-- Current Website Certificate Issued To. -->
826 android:layout_height="wrap_content"
827 android:layout_width="match_parent"
828 android:text="@string/issued_to"
829 android:textAllCaps="true"
830 android:textStyle="bold"
831 android:textColor="@color/blue_title_text" />
834 android:id="@+id/current_website_certificate_issued_to_cname"
835 android:layout_height="wrap_content"
836 android:layout_width="match_parent" />
839 android:id="@+id/current_website_certificate_issued_to_oname"
840 android:layout_height="wrap_content"
841 android:layout_width="match_parent" />
844 android:id="@+id/current_website_certificate_issued_to_uname"
845 android:layout_height="wrap_content"
846 android:layout_width="match_parent" />
848 <!-- Current Website Certificate Issued By. -->
850 android:layout_height="wrap_content"
851 android:layout_width="match_parent"
852 android:layout_marginTop="15dp"
853 android:text="@string/issued_by"
854 android:textAllCaps="true"
855 android:textStyle="bold"
856 android:textColor="@color/blue_title_text" />
859 android:id="@+id/current_website_certificate_issued_by_cname"
860 android:layout_height="wrap_content"
861 android:layout_width="match_parent" />
864 android:id="@+id/current_website_certificate_issued_by_oname"
865 android:layout_height="wrap_content"
866 android:layout_width="match_parent" />
869 android:id="@+id/current_website_certificate_issued_by_uname"
870 android:layout_height="wrap_content"
871 android:layout_width="match_parent" />
873 <!-- Current Website Certificate Valid Dates. -->
875 android:layout_height="wrap_content"
876 android:layout_width="match_parent"
877 android:layout_marginTop="15dp"
878 android:text="@string/valid_dates"
879 android:textAllCaps="true"
880 android:textStyle="bold"
881 android:textColor="@color/blue_title_text" />
884 android:id="@+id/current_website_certificate_start_date"
885 android:layout_height="wrap_content"
886 android:layout_width="match_parent" />
889 android:id="@+id/current_website_certificate_end_date"
890 android:layout_height="wrap_content"
891 android:layout_width="match_parent" />
894 </androidx.cardview.widget.CardView>
896 <!-- Load An Encrypted Website Instructions. -->
898 android:id="@+id/no_current_website_certificate"
899 android:layout_height="wrap_content"
900 android:layout_width="match_parent"
901 android:layout_marginTop="10dp"
902 android:layout_marginBottom="10dp"
903 android:layout_marginStart="40dp"
904 android:layout_marginEnd="40dp"
905 android:gravity="center_horizontal"
906 android:text="@string/load_an_encrypted_website" />
909 <!-- Pinned IP Addresses -->
911 android:layout_height="wrap_content"
912 android:layout_width="match_parent"
913 android:orientation="vertical"
914 android:layout_marginTop="18dp"
915 android:layout_marginBottom="18dp" >
919 android:layout_height="wrap_content"
920 android:layout_width="match_parent"
921 android:orientation="horizontal" >
924 android:id="@+id/pinned_ip_addresses_imageview"
925 android:layout_height="wrap_content"
926 android:layout_width="wrap_content"
927 android:layout_marginTop="1dp"
928 android:layout_marginEnd="10dp"
929 android:layout_gravity="center_vertical"
930 android:src="@drawable/ssl_certificate"
931 app:tint="@color/blue_icon_selector"
932 tools:ignore="contentDescription" />
934 <androidx.appcompat.widget.SwitchCompat
935 android:id="@+id/pinned_ip_addresses_switch"
936 android:layout_height="wrap_content"
937 android:layout_width="match_parent"
938 android:layout_marginStart="8dp"
939 android:text="@string/pinned_ip_addresses"
940 android:textColor="?android:textColorPrimary"
941 android:textSize="18sp" />
944 <!-- Saved IP Addresses -->
945 <androidx.cardview.widget.CardView
946 android:id="@+id/saved_ip_addresses_cardview"
947 android:layout_height="wrap_content"
948 android:layout_width="match_parent"
949 android:layout_marginTop="10dp"
950 android:layout_marginStart="10dp"
951 android:layout_marginEnd="10dp" >
954 android:id="@+id/saved_ip_addresses_linearlayout"
955 android:layout_height="wrap_content"
956 android:layout_width="match_parent"
957 android:orientation="vertical"
958 android:padding="10dp" >
961 android:id="@+id/saved_ip_addresses_radiobutton"
962 android:layout_height="wrap_content"
963 android:layout_width="match_parent"
964 android:text="@string/saved_ip_addresses"
965 android:textSize="17sp"
966 android:textAllCaps="true"
967 android:textStyle="bold"
968 android:textColor="?android:textColorPrimary" />
971 android:id="@+id/saved_ip_addresses_textview"
972 android:layout_height="wrap_content"
973 android:layout_width="match_parent"
974 android:layout_marginStart="32dp"
975 android:textColor="@color/blue_text" />
977 </androidx.cardview.widget.CardView>
979 <androidx.cardview.widget.CardView
980 android:id="@+id/current_ip_addresses_cardview"
981 android:layout_height="wrap_content"
982 android:layout_width="match_parent"
983 android:layout_margin="10dp">
986 android:id="@+id/current_ip_addresses_linearlayout"
987 android:layout_height="wrap_content"
988 android:layout_width="match_parent"
989 android:orientation="vertical"
990 android:padding="10dp" >
993 android:id="@+id/current_ip_addresses_radiobutton"
994 android:layout_height="wrap_content"
995 android:layout_width="match_parent"
996 android:text="@string/current_ip_addresses"
997 android:textSize="17sp"
998 android:textAllCaps="true"
999 android:textStyle="bold"
1000 android:textColor="?android:textColorPrimary" />
1003 android:id="@+id/current_ip_addresses_textview"
1004 android:layout_height="wrap_content"
1005 android:layout_width="match_parent"
1006 android:layout_marginStart="32dp"
1007 android:textColor="@color/blue_text" />
1009 </androidx.cardview.widget.CardView>