]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/save_dialog.xml
Simplify the SaveWebpageDialog. https://redmine.stoutner.com/issues/769
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / save_dialog.xml
index a7c9d7d6c31d2635708a29772ba04fe4dd726c0d..8d46b07e7a9f2f1a379eadc7900c74fcfec0a5a2 100644 (file)
     android:layout_height="wrap_content"
     android:layout_width="match_parent" >
 
-    <!-- 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="vertical"
         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:layout_height="wrap_content"
-            android:layout_width="0dp"
-            android:layout_weight="1" >
+            android:layout_width="match_parent" >
 
-            <!-- `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:id="@+id/url_edittext"
                 android:layout_height="wrap_content"
                 android:layout_width="match_parent"
-                android:hint="@string/file_name"
+                android:hint="@string/url"
                 android:inputType="textMultiLine|textUri" />
         </com.google.android.material.textfield.TextInputLayout>
 
-        <Button
-            android:id="@+id/browse_button"
+        <!-- File size. -->
+        <TextView
+            android:id="@+id/file_size_textview"
             android:layout_height="wrap_content"
             android:layout_width="wrap_content"
-            android:layout_gravity="center_vertical"
-            android:text="@string/browse" />
+            android:layout_marginEnd="3dp"
+            android:layout_marginBottom="5dp"
+            android:layout_gravity="end" />
     </LinearLayout>
 </ScrollView>
\ No newline at end of file