]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/save_dialog.xml
Implement opening of local files. https://redmine.stoutner.com/issues/513
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / save_dialog.xml
index 973055b41cc77b7b90c02d2dbee6ff6f39b57184..dd3059e3ecff57345159033889e62c021f2c5c62 100644 (file)
         android:layout_marginStart="10dp"
         android:layout_marginEnd="10dp" >
 
-        <!-- Align the EditText and the select file button horizontally. -->
+        <!-- Align the edit text and the select file button horizontally. -->
         <LinearLayout
             android:layout_height="wrap_content"
             android:layout_width="match_parent"
             android:orientation="horizontal" >
 
-            <!-- The `TextInputLayout` makes the `android:hint` float above the `EditText`. -->
+            <!-- The text input layout makes the `android:hint` float above the edit text. -->
             <com.google.android.material.textfield.TextInputLayout
                 android:layout_height="wrap_content"
                 android:layout_width="0dp"
                 android:layout_weight="1" >
 
-                <!-- `android:inputType="textUri" disables spell check and places an `/` on the main keyboard. -->
+                <!-- `android:inputType="textUri"` disables spell check and places an `/` on the main keyboard. -->
                 <com.google.android.material.textfield.TextInputEditText
                     android:id="@+id/file_name_edittext"
                     android:layout_height="wrap_content"
@@ -62,8 +62,8 @@
 
         <TextView
             android:id="@+id/storage_permission_textview"
-            android:layout_width="wrap_content"
             android:layout_height="wrap_content"
+            android:layout_width="wrap_content"
             android:layout_gravity="center_horizontal"
             android:text="@string/storage_permission_explanation"
             android:textColor="?android:textColorPrimary"