]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/save_dialog.xml
Expand the options for selecting a download provider. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / save_dialog.xml
index c11ee8b9d0dcc88e8e1c2280949df6e8dc379f14..d9b1ea6b6ac71bfa70ca5874600bb7a1a4c9d62a 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2019-2022 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2019-2022, 2024 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
 
@@ -31,7 +31,7 @@
         android:layout_marginStart="10dp"
         android:layout_marginEnd="10dp" >
 
-        <!-- The text input layout makes the `android:hint` float above the edit text. -->
+        <!-- URL.  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="match_parent" >
             android:layout_marginEnd="3dp"
             android:layout_marginBottom="5dp"
             android:layout_gravity="end" />
+
+        <!-- Blob warning.  It is initially visibility gone, but will be displayed as needed. -->
+        <TextView
+            android:id="@+id/blob_url_warning_textview"
+            android:layout_height="wrap_content"
+            android:layout_width="wrap_content"
+            android:text="@string/blob_url_warning"
+            android:textColor="@color/red_text"
+            android:visibility="gone" />
+
+        <!-- Data warning.  It is initially visibility gone, but will be displayed as needed. -->
+        <TextView
+            android:id="@+id/data_url_warning_textview"
+            android:layout_height="wrap_content"
+            android:layout_width="wrap_content"
+            android:text="@string/data_url_warning"
+            android:textColor="@color/red_text"
+            android:visibility="gone" />
+
+        <!-- Android download manager views. They are initially visibility gone, but will be displayed as needed.-->
+        <LinearLayout
+            android:id="@+id/android_download_manager_linearlayout"
+            android:layout_height="wrap_content"
+            android:layout_width="match_parent"
+            android:layout_marginTop="10dp"
+            android:orientation="vertical"
+            android:visibility="gone" >
+
+            <!-- Download directory header. -->
+            <TextView
+                android:layout_height="wrap_content"
+                android:layout_width="wrap_content"
+                android:layout_gravity="center"
+                android:text="@string/download_directory"
+                android:textSize="20sp"
+                android:textStyle="bold"
+                android:textColor="?android:textColorPrimary" />
+
+            <!-- Download directory radio group. -->
+            <RadioGroup
+                android:id="@+id/download_directory_radiogroup"
+                android:layout_height="wrap_content"
+                android:layout_width="match_parent"
+                android:layout_marginTop="5dp"
+                android:layout_gravity="center"
+                android:orientation="vertical" >
+
+                <!-- Downloads. -->
+                <RadioButton
+                    android:id="@+id/downloads_radiobutton"
+                    android:layout_height="wrap_content"
+                    android:layout_width="match_parent"
+                    android:text="@string/downloads"
+                    android:checked="true" />
+
+                <!-- Documents. -->
+                <RadioButton
+                    android:id="@+id/documents_radiobutton"
+                    android:layout_height="wrap_content"
+                    android:layout_width="match_parent"
+                    android:text="@string/documents" />
+
+                <!-- Pictures. -->
+                <RadioButton
+                    android:id="@+id/pictures_radiobutton"
+                    android:layout_height="wrap_content"
+                    android:layout_width="match_parent"
+                    android:text="@string/pictures" />
+
+                <!-- Music. -->
+                <RadioButton
+                    android:id="@+id/music_radiobutton"
+                    android:layout_height="wrap_content"
+                    android:layout_width="match_parent"
+                    android:text="@string/music" />
+            </RadioGroup>
+
+            <!-- File Name.  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="match_parent"
+                android:layout_marginTop="14dp" >
+
+                <!-- `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"
+                    android:layout_width="match_parent"
+                    android:hint="@string/file_name"
+                    android:inputType="textUri" />
+            </com.google.android.material.textfield.TextInputLayout>
+        </LinearLayout>
     </LinearLayout>
 </ScrollView>