1 <?xml version="1.0" encoding="utf-8"?>
4 Copyright © 2017-2018 Soren Stoutner <soren@stoutner.com>.
6 This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
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.
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.
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/>. -->
22 android:id="@+id/domain_settings_scrollview"
23 xmlns:android="http://schemas.android.com/apk/res/android"
24 xmlns:tools="http://schemas.android.com/tools"
25 android:layout_height="wrap_content"
26 android:layout_width="match_parent"
27 android:focusable="true"
28 android:focusableInTouchMode="true"
29 android:descendantFocusability="beforeDescendants" >
32 xmlns:android="http://schemas.android.com/apk/res/android"
33 android:layout_height="wrap_content"
34 android:layout_width="match_parent"
35 android:layout_margin="12dp"
36 android:orientation="vertical"
37 android:divider="?android:attr/dividerVertical" >
41 android:layout_height="wrap_content"
42 android:layout_width="match_parent"
43 android:orientation="vertical" >
46 android:layout_height="wrap_content"
47 android:layout_width="match_parent"
48 android:orientation="horizontal" >
51 android:layout_height="wrap_content"
52 android:layout_width="wrap_content"
53 android:layout_marginEnd="10dp"
54 android:layout_marginBottom="12dp"
55 android:layout_gravity="bottom"
56 android:src="@drawable/domains"
57 android:tint="?attr/domainSettingsIconTintColor"
58 tools:ignore="contentDescription" />
60 <!-- `android.support.design.widget.TextInputLayout` makes the `android:hint` float above the `EditText`. -->
61 <android.support.design.widget.TextInputLayout
62 android:layout_height="wrap_content"
63 android:layout_width="match_parent"
64 android:layout_marginStart="6dp" >
66 <!-- `android:inputType="textUri"` disables spell check in the `EditText`. -->
67 <android.support.design.widget.TextInputEditText
68 android:id="@+id/domain_settings_name_edittext"
69 android:layout_width="match_parent"
70 android:layout_height="wrap_content"
71 android:hint="@string/domain_name"
72 android:inputType="textUri" />
73 </android.support.design.widget.TextInputLayout>
77 android:layout_height="wrap_content"
78 android:layout_width="match_parent"
79 android:text="@string/domain_name_instructions"
80 android:textSize="12sp"
81 android:layout_marginStart="43dp"
82 android:layout_marginBottom="14dp" />
87 android:layout_height="wrap_content"
88 android:layout_width="match_parent"
89 android:orientation="horizontal" >
92 android:id="@+id/domain_settings_javascript_imageview"
93 android:layout_height="wrap_content"
94 android:layout_width="wrap_content"
95 android:layout_marginTop="1dp"
96 android:layout_marginEnd="10dp"
97 android:layout_gravity="center_vertical"
98 tools:ignore="contentDescription" />
101 android:id="@+id/domain_settings_javascript_switch"
102 android:layout_height="wrap_content"
103 android:layout_width="match_parent"
104 android:layout_marginStart="8dp"
105 android:layout_marginTop="14dp"
106 android:layout_marginBottom="14dp"
107 android:text="@string/javascript_enabled"
108 android:textColor="?android:textColorPrimary"
109 android:textSize="18sp" />
112 <!-- First-Party Cookies. -->
114 android:layout_height="wrap_content"
115 android:layout_width="match_parent"
116 android:orientation="horizontal" >
119 android:id="@+id/domain_settings_first_party_cookies_imageview"
120 android:layout_height="wrap_content"
121 android:layout_width="wrap_content"
122 android:layout_marginTop="1dp"
123 android:layout_marginEnd="10dp"
124 android:layout_gravity="center_vertical"
125 tools:ignore="contentDescription" />
128 android:id="@+id/domain_settings_first_party_cookies_switch"
129 android:layout_height="wrap_content"
130 android:layout_width="match_parent"
131 android:layout_marginStart="8dp"
132 android:layout_marginTop="14dp"
133 android:layout_marginBottom="14dp"
134 android:text="@string/first_party_cookies_enabled"
135 android:textColor="?android:textColorPrimary"
136 android:textSize="18sp" />
139 <!-- Third-Party Cookies. -->
141 android:id="@+id/domain_settings_third_party_cookies_linearlayout"
142 android:layout_height="wrap_content"
143 android:layout_width="match_parent"
144 android:orientation="horizontal" >
147 android:id="@+id/domain_settings_third_party_cookies_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 tools:ignore="contentDescription" />
156 android:id="@+id/domain_settings_third_party_cookies_switch"
157 android:layout_height="wrap_content"
158 android:layout_width="match_parent"
159 android:layout_marginStart="8dp"
160 android:layout_marginTop="14dp"
161 android:layout_marginBottom="14dp"
162 android:text="@string/third_party_cookies_enabled"
163 android:textColor="?android:textColorPrimary"
164 android:textSize="18sp" />
167 <!-- DOM Storage. -->
169 android:layout_height="wrap_content"
170 android:layout_width="match_parent"
171 android:orientation="horizontal" >
174 android:id="@+id/domain_settings_dom_storage_imageview"
175 android:layout_height="wrap_content"
176 android:layout_width="wrap_content"
177 android:layout_marginTop="1dp"
178 android:layout_marginEnd="10dp"
179 android:layout_gravity="center_vertical"
180 tools:ignore="contentDescription" />
183 android:id="@+id/domain_settings_dom_storage_switch"
184 android:layout_height="wrap_content"
185 android:layout_width="match_parent"
186 android:layout_marginStart="8dp"
187 android:layout_marginTop="14dp"
188 android:layout_marginBottom="14dp"
189 android:text="@string/dom_storage_enabled"
190 android:textColor="?android:textColorPrimary"
191 android:textSize="18sp" />
196 android:layout_height="wrap_content"
197 android:layout_width="match_parent"
198 android:orientation="horizontal" >
201 android:id="@+id/domain_settings_form_data_imageview"
202 android:layout_height="wrap_content"
203 android:layout_width="wrap_content"
204 android:layout_marginTop="1dp"
205 android:layout_marginEnd="10dp"
206 android:layout_gravity="center_vertical"
207 tools:ignore="contentDescription" />
210 android:id="@+id/domain_settings_form_data_switch"
211 android:layout_height="wrap_content"
212 android:layout_width="match_parent"
213 android:layout_marginStart="8dp"
214 android:layout_marginTop="14dp"
215 android:layout_marginBottom="14dp"
216 android:text="@string/form_data_enabled"
217 android:textColor="?android:textColorPrimary"
218 android:textSize="18sp" />
223 android:layout_height="wrap_content"
224 android:layout_width="match_parent"
225 android:orientation="horizontal" >
228 android:id="@+id/domain_settings_easylist_imageview"
229 android:layout_height="wrap_content"
230 android:layout_width="wrap_content"
231 android:layout_marginTop="1dp"
232 android:layout_marginEnd="10dp"
233 android:layout_gravity="center_vertical"
234 tools:ignore="contentDescription" />
237 android:id="@+id/domain_settings_easylist_switch"
238 android:layout_height="wrap_content"
239 android:layout_width="match_parent"
240 android:layout_marginStart="8dp"
241 android:layout_marginTop="14dp"
242 android:layout_marginBottom="14dp"
243 android:text="@string/easylist"
244 android:textColor="?android:textColorPrimary"
245 android:textSize="18sp" />
248 <!-- EasyPrivacy. -->
250 android:layout_height="wrap_content"
251 android:layout_width="match_parent"
252 android:orientation="horizontal" >
255 android:id="@+id/domain_settings_easyprivacy_imageview"
256 android:layout_height="wrap_content"
257 android:layout_width="wrap_content"
258 android:layout_marginTop="1dp"
259 android:layout_marginEnd="10dp"
260 android:layout_gravity="center_vertical"
261 tools:ignore="contentDescription" />
264 android:id="@+id/domain_settings_easyprivacy_switch"
265 android:layout_height="wrap_content"
266 android:layout_width="match_parent"
267 android:layout_marginStart="8dp"
268 android:layout_marginTop="14dp"
269 android:layout_marginBottom="14dp"
270 android:text="@string/easyprivacy"
271 android:textColor="?android:textColorPrimary"
272 android:textSize="18sp" />
275 <!-- Fanboy's Annoyance List. -->
277 android:layout_height="wrap_content"
278 android:layout_width="match_parent"
279 android:orientation="horizontal" >
282 android:id="@+id/domain_settings_fanboys_annoyance_list_imageview"
283 android:layout_height="wrap_content"
284 android:layout_width="wrap_content"
285 android:layout_marginTop="1dp"
286 android:layout_marginEnd="10dp"
287 android:layout_gravity="center_vertical"
288 tools:ignore="contentDescription" />
291 android:id="@+id/domain_settings_fanboys_annoyance_list_switch"
292 android:layout_height="wrap_content"
293 android:layout_width="match_parent"
294 android:layout_marginStart="8dp"
295 android:layout_marginTop="14dp"
296 android:layout_marginBottom="14dp"
297 android:text="@string/fanboys_annoyance_list"
298 android:textColor="?android:textColorPrimary"
299 android:textSize="18sp" />
302 <!-- Fanboy's Social Blocking List. -->
304 android:layout_height="wrap_content"
305 android:layout_width="match_parent"
306 android:orientation="horizontal" >
309 android:id="@+id/domain_settings_fanboys_social_blocking_list_imageview"
310 android:layout_height="wrap_content"
311 android:layout_width="wrap_content"
312 android:layout_marginTop="1dp"
313 android:layout_marginEnd="10dp"
314 android:layout_gravity="center_vertical"
315 tools:ignore="contentDescription" />
318 android:id="@+id/domain_settings_fanboys_social_blocking_list_switch"
319 android:layout_height="wrap_content"
320 android:layout_width="match_parent"
321 android:layout_marginStart="8dp"
322 android:layout_marginTop="14dp"
323 android:layout_marginBottom="14dp"
324 android:text="@string/fanboys_social_blocking_list"
325 android:textColor="?android:textColorPrimary"
326 android:textSize="18sp" />
329 <!-- UltraPrivacy. -->
331 android:layout_height="wrap_content"
332 android:layout_width="match_parent"
333 android:orientation="horizontal" >
336 android:id="@+id/domain_settings_ultraprivacy_imageview"
337 android:layout_height="wrap_content"
338 android:layout_width="wrap_content"
339 android:layout_marginTop="1dp"
340 android:layout_marginEnd="10dp"
341 android:layout_gravity="center_vertical"
342 tools:ignore="contentDescription" />
345 android:id="@+id/domain_settings_ultraprivacy_switch"
346 android:layout_height="wrap_content"
347 android:layout_width="match_parent"
348 android:layout_marginStart="8dp"
349 android:layout_marginTop="14dp"
350 android:layout_marginBottom="14dp"
351 android:text="@string/ultraprivacy"
352 android:textColor="?android:textColorPrimary"
353 android:textSize="18sp" />
356 <!-- Block All Third Party Requests. -->
358 android:layout_height="wrap_content"
359 android:layout_width="match_parent"
360 android:orientation="horizontal" >
363 android:id="@+id/domain_settings_block_all_third_party_requests_imageview"
364 android:layout_height="wrap_content"
365 android:layout_width="wrap_content"
366 android:layout_marginTop="1dp"
367 android:layout_marginEnd="10dp"
368 android:layout_gravity="center_vertical"
369 tools:ignore="contentDescription" />
372 android:id="@+id/domain_settings_block_all_third_party_requests_switch"
373 android:layout_height="wrap_content"
374 android:layout_width="match_parent"
375 android:layout_marginStart="8dp"
376 android:layout_marginTop="14dp"
377 android:layout_marginBottom="14dp"
378 android:text="@string/block_all_third_party_requests"
379 android:textColor="?android:textColorPrimary"
380 android:textSize="18sp" />
385 android:layout_height="wrap_content"
386 android:layout_width="match_parent"
387 android:orientation="vertical"
388 android:layout_marginTop="14dp"
389 android:layout_marginBottom="14dp" >
392 android:layout_height="wrap_content"
393 android:layout_width="match_parent"
394 android:orientation="horizontal" >
397 android:layout_height="wrap_content"
398 android:layout_width="wrap_content"
399 android:layout_marginTop="1dp"
400 android:layout_marginEnd="10dp"
401 android:layout_gravity="center_vertical"
402 android:src="@drawable/user_agent_light"
403 android:tint="?attr/domainSettingsIconTintColor"
404 android:contentDescription="@string/user_agent" />
407 android:id="@+id/domain_settings_user_agent_spinner"
408 android:layout_height="wrap_content"
409 android:layout_width="match_parent"
410 android:labelFor="@+id/domain_settings_custom_user_agent_edittext" />
414 android:id="@+id/domain_settings_user_agent_textview"
415 android:layout_height="match_parent"
416 android:layout_width="match_parent"
417 android:layout_marginStart="45dp"
418 android:layout_marginEnd="36dp"
419 android:textSize="13sp" />
422 android:id="@id/domain_settings_custom_user_agent_edittext"
423 android:layout_height="wrap_content"
424 android:layout_width="match_parent"
425 android:layout_marginStart="40dp"
426 android:layout_marginEnd="60dp"
427 android:inputType="textUri"
428 android:hint="@string/custom_user_agent"/>
433 android:layout_height="wrap_content"
434 android:layout_width="match_parent"
435 android:orientation="vertical"
436 android:layout_marginTop="14dp"
437 android:layout_marginBottom="14dp" >
440 android:layout_height="wrap_content"
441 android:layout_width="match_parent"
442 android:orientation="horizontal" >
445 android:layout_height="wrap_content"
446 android:layout_width="wrap_content"
447 android:layout_marginTop="1dp"
448 android:layout_marginEnd="10dp"
449 android:layout_gravity="center_vertical"
450 android:src="@drawable/font_size_light"
451 android:tint="?attr/domainSettingsIconTintColor"
452 android:contentDescription="@string/font_size" />
455 android:id="@+id/domain_settings_font_size_spinner"
456 android:layout_height="wrap_content"
457 android:layout_width="match_parent" />
461 android:id="@+id/domain_settings_font_size_textview"
462 android:layout_height="match_parent"
463 android:layout_width="match_parent"
464 android:layout_marginStart="45dp"
465 android:layout_marginEnd="36dp"
466 android:textSize="13sp" />
470 <!-- Swipe to Refresh. -->
472 android:layout_height="wrap_content"
473 android:layout_width="match_parent"
474 android:orientation="vertical"
475 android:layout_marginTop="14dp"
476 android:layout_marginBottom="14dp" >
479 android:layout_height="wrap_content"
480 android:layout_width="match_parent"
481 android:orientation="horizontal" >
484 android:id="@+id/domain_settings_swipe_to_refresh_imageview"
485 android:layout_height="wrap_content"
486 android:layout_width="wrap_content"
487 android:layout_marginTop="1dp"
488 android:layout_marginEnd="10dp"
489 android:layout_gravity="center_vertical"
490 android:contentDescription="@string/swipe_to_refresh_preference" />
493 android:id="@+id/domain_settings_swipe_to_refresh_spinner"
494 android:layout_height="wrap_content"
495 android:layout_width="match_parent" />
499 android:id="@+id/domain_settings_swipe_to_refresh_textview"
500 android:layout_height="match_parent"
501 android:layout_width="match_parent"
502 android:layout_marginStart="45dp"
503 android:layout_marginEnd="36dp"
504 android:textSize="13sp" />
509 android:layout_height="wrap_content"
510 android:layout_width="match_parent"
511 android:orientation="vertical"
512 android:layout_marginTop="14dp"
513 android:layout_marginBottom="14dp" >
516 android:layout_height="wrap_content"
517 android:layout_width="match_parent"
518 android:orientation="horizontal" >
521 android:id="@+id/domain_settings_night_mode_imageview"
522 android:layout_height="wrap_content"
523 android:layout_width="wrap_content"
524 android:layout_marginTop="1dp"
525 android:layout_marginEnd="10dp"
526 android:layout_gravity="center_vertical"
527 android:contentDescription="@string/night_mode" />
530 android:id="@+id/domain_settings_night_mode_spinner"
531 android:layout_height="wrap_content"
532 android:layout_width="match_parent" />
536 android:id="@+id/domain_settings_night_mode_textview"
537 android:layout_height="match_parent"
538 android:layout_width="match_parent"
539 android:layout_marginStart="45dp"
540 android:layout_marginEnd="36dp"
541 android:textSize="13sp" />
544 <!-- Display Images. -->
546 android:layout_height="wrap_content"
547 android:layout_width="match_parent"
548 android:orientation="vertical"
549 android:layout_marginTop="14dp"
550 android:layout_marginBottom="14dp" >
553 android:layout_height="wrap_content"
554 android:layout_width="match_parent"
555 android:orientation="horizontal" >
558 android:id="@+id/domain_settings_display_webpage_images_imageview"
559 android:layout_height="wrap_content"
560 android:layout_width="wrap_content"
561 android:layout_marginTop="1dp"
562 android:layout_marginEnd="10dp"
563 android:layout_gravity="center_vertical"
564 android:contentDescription="@string/display_webpage_images" />
567 android:id="@+id/domain_settings_display_webpage_images_spinner"
568 android:layout_height="wrap_content"
569 android:layout_width="match_parent" />
573 android:id="@+id/domain_settings_display_webpage_images_textview"
574 android:layout_height="match_parent"
575 android:layout_width="match_parent"
576 android:layout_marginStart="45dp"
577 android:layout_marginEnd="36dp"
578 android:textSize="13sp" />
581 <!-- Pinned SSL Certificate -->
583 android:layout_height="wrap_content"
584 android:layout_width="match_parent"
585 android:orientation="vertical"
586 android:layout_marginTop="18dp"
587 android:layout_marginBottom="32dp" >
591 android:layout_height="wrap_content"
592 android:layout_width="match_parent"
593 android:orientation="horizontal" >
596 android:id="@+id/domain_settings_pinned_ssl_certificate_imageview"
597 android:layout_height="wrap_content"
598 android:layout_width="wrap_content"
599 android:layout_marginTop="1dp"
600 android:layout_marginEnd="10dp"
601 android:layout_gravity="center_vertical"
602 tools:ignore="contentDescription" />
605 android:id="@+id/domain_settings_pinned_ssl_certificate_switch"
606 android:layout_height="wrap_content"
607 android:layout_width="match_parent"
608 android:layout_marginStart="8dp"
609 android:text="@string/pinned_ssl_certificate"
610 android:textColor="?android:textColorPrimary"
611 android:textSize="18sp" />
614 <!-- Saved Certificate -->
616 android:id="@+id/saved_ssl_certificate_linearlayout"
617 android:layout_height="wrap_content"
618 android:layout_width="match_parent"
619 android:orientation="vertical"
620 android:layout_marginTop="20dp"
621 android:layout_marginBottom="12dp"
622 android:layout_marginStart="10dp"
623 android:layout_marginEnd="10dp" >
626 android:id="@+id/saved_ssl_certificate_radiobutton"
627 android:layout_height="wrap_content"
628 android:layout_width="match_parent"
629 android:text="@string/saved_ssl_certificate"
630 android:textSize="17sp"
631 android:textAllCaps="true"
632 android:textStyle="bold" />
635 android:layout_height="wrap_content"
636 android:layout_width="match_parent"
637 android:layout_marginStart="32dp"
638 android:orientation="vertical" >
640 <!-- Saved Certificate Issued To. -->
642 android:layout_height="wrap_content"
643 android:layout_width="match_parent"
644 android:text="@string/issued_to"
645 android:textAllCaps="true"
646 android:textStyle="bold"
647 android:textColor="?attr/sslTitle" />
650 android:id="@+id/saved_ssl_certificate_issued_to_cname"
651 android:layout_height="wrap_content"
652 android:layout_width="match_parent" />
655 android:id="@+id/saved_ssl_certificate_issued_to_oname"
656 android:layout_height="wrap_content"
657 android:layout_width="match_parent" />
660 android:id="@+id/saved_ssl_certificate_issued_to_uname"
661 android:layout_height="wrap_content"
662 android:layout_width="match_parent"/>
664 <!-- Saved Certificate Issued By. -->
666 android:layout_height="wrap_content"
667 android:layout_width="match_parent"
668 android:layout_marginTop="15dp"
669 android:text="@string/issued_by"
670 android:textAllCaps="true"
671 android:textStyle="bold"
672 android:textColor="?attr/sslTitle"/>
675 android:id="@+id/saved_ssl_certificate_issued_by_cname"
677 android:layout_height="wrap_content"
678 android:layout_width="match_parent" />
681 android:id="@+id/saved_ssl_certificate_issued_by_oname"
682 android:layout_height="wrap_content"
683 android:layout_width="match_parent" />
686 android:id="@+id/saved_ssl_certificate_issued_by_uname"
687 android:layout_height="wrap_content"
688 android:layout_width="match_parent" />
690 <!-- Saved Certificate Valid Dates. -->
692 android:layout_height="wrap_content"
693 android:layout_width="match_parent"
694 android:layout_marginTop="15dp"
695 android:text="@string/valid_dates"
696 android:textAllCaps="true"
697 android:textStyle="bold"
698 android:textColor="?attr/sslTitle"/>
701 android:id="@+id/saved_ssl_certificate_start_date"
702 android:layout_height="wrap_content"
703 android:layout_width="match_parent" />
706 android:id="@+id/saved_ssl_certificate_end_date"
707 android:layout_height="wrap_content"
708 android:layout_width="match_parent" />
712 <!-- Current Website Certificate -->
714 android:id="@+id/current_website_certificate_linearlayout"
715 android:layout_height="wrap_content"
716 android:layout_width="match_parent"
717 android:orientation="vertical"
718 android:layout_marginTop="20dp"
719 android:layout_marginBottom="8dp"
720 android:layout_marginStart="10dp"
721 android:layout_marginEnd="10dp" >
724 android:id="@+id/current_website_certificate_radiobutton"
725 android:layout_height="wrap_content"
726 android:layout_width="match_parent"
727 android:text="@string/current_website_ssl_certificate"
728 android:textSize="17sp"
729 android:textAllCaps="true"
730 android:textStyle="bold" />
733 android:layout_height="wrap_content"
734 android:layout_width="match_parent"
735 android:layout_marginStart="32dp"
736 android:orientation="vertical" >
738 <!-- Current Website Certificate Issued To. -->
740 android:layout_height="wrap_content"
741 android:layout_width="match_parent"
742 android:text="@string/issued_to"
743 android:textAllCaps="true"
744 android:textStyle="bold"
745 android:textColor="?attr/sslTitle" />
748 android:id="@+id/current_website_certificate_issued_to_cname"
749 android:layout_height="wrap_content"
750 android:layout_width="match_parent" />
753 android:id="@+id/current_website_certificate_issued_to_oname"
754 android:layout_height="wrap_content"
755 android:layout_width="match_parent" />
758 android:id="@+id/current_website_certificate_issued_to_uname"
759 android:layout_height="wrap_content"
760 android:layout_width="match_parent" />
762 <!-- Current Website Certificate Issued By. -->
764 android:layout_height="wrap_content"
765 android:layout_width="match_parent"
766 android:layout_marginTop="15dp"
767 android:text="@string/issued_by"
768 android:textAllCaps="true"
769 android:textStyle="bold"
770 android:textColor="?attr/sslTitle" />
773 android:id="@+id/current_website_certificate_issued_by_cname"
774 android:layout_height="wrap_content"
775 android:layout_width="match_parent" />
778 android:id="@+id/current_website_certificate_issued_by_oname"
779 android:layout_height="wrap_content"
780 android:layout_width="match_parent" />
783 android:id="@+id/current_website_certificate_issued_by_uname"
784 android:layout_height="wrap_content"
785 android:layout_width="match_parent" />
787 <!-- Current Website Certificate Valid Dates. -->
789 android:layout_height="wrap_content"
790 android:layout_width="match_parent"
791 android:layout_marginTop="15dp"
792 android:text="@string/valid_dates"
793 android:textAllCaps="true"
794 android:textStyle="bold"
795 android:textColor="?attr/sslTitle" />
798 android:id="@+id/current_website_certificate_start_date"
799 android:layout_height="wrap_content"
800 android:layout_width="match_parent" />
803 android:id="@+id/current_website_certificate_end_date"
804 android:layout_height="wrap_content"
805 android:layout_width="match_parent" />
809 <!-- Load An Encrypted Website Instructions. -->
811 android:id="@+id/no_current_website_certificate"
812 android:layout_height="wrap_content"
813 android:layout_width="match_parent"
814 android:layout_marginTop="10dp"
815 android:layout_marginStart="40dp"
816 android:layout_marginEnd="40dp"
817 android:gravity="center_horizontal"
818 android:text="@string/load_an_encrypted_website" />