]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/open_dialog.xml
Restore saving as MHT web archives. https://redmine.stoutner.com/issues/677
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / open_dialog.xml
index 3956b5b8505523b924688d409a67d49e68c50c6c..33528645d1932e75ed527a9c0a35b6ed04731981 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright © 2019-2020 Soren Stoutner <soren@stoutner.com>.
+  Copyright © 2019-2021 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
     <LinearLayout
         android:layout_height="wrap_content"
         android:layout_width="match_parent"
-        android:orientation="vertical"
-        android:layout_marginTop="10dp"
-        android:layout_marginStart="10dp"
-        android:layout_marginEnd="10dp" >
+        android:orientation="vertical" >
 
         <!-- Align the edit text and the select file button horizontally. -->
         <LinearLayout
             android:layout_height="wrap_content"
             android:layout_width="match_parent"
-            android:orientation="horizontal" >
+            android:orientation="horizontal"
+            android:layout_marginTop="10dp"
+            android:layout_marginStart="10dp"
+            android:layout_marginEnd="10dp" >
 
             <!-- The text input layout makes the `android:hint` float above the edit text. -->
             <com.google.android.material.textfield.TextInputLayout
                 android:text="@string/browse" />
         </LinearLayout>
 
-        <!-- File does not exist warning. -->
-        <TextView
-            android:id="@+id/file_does_not_exist_textview"
+        <CheckBox
+            android:id="@+id/mht_checkbox"
             android:layout_height="wrap_content"
-            android:layout_width="wrap_content"
-            android:layout_gravity="center_horizontal"
-            android:layout_margin="5dp"
-            android:text="@string/file_does_not_exist"
-            android:textColor="?attr/redText"
-            android:textAlignment="center" />
+            android:layout_width="match_parent"
+            android:text="@string/file_is_mht"
+            android:layout_marginStart="8dp" />
 
-        <!-- Storage permission explanation. -->
         <TextView
-            android:id="@+id/storage_permission_textview"
+            android:id="@+id/mht_explanation_textview"
             android:layout_height="wrap_content"
-            android:layout_width="wrap_content"
-            android:layout_gravity="center_horizontal"
-            android:text="@string/storage_permission_explanation"
+            android:layout_width="match_parent"
+            android:text="@string/mht_checkbox_explanation"
             android:textColor="?android:textColorPrimary"
-            android:textAlignment="center" />
+            android:layout_marginStart="10dp"
+            android:layout_marginEnd="10dp"
+            android:layout_marginTop="8dp"
+            android:gravity="center_horizontal"
+            android:visibility="gone" />
     </LinearLayout>
 </ScrollView>
\ No newline at end of file