summaryrefslogtreecommitdiff
path: root/ui/discovery/src/main/res/layout/select_country_dialog.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2024-03-29 13:38:31 +0100
committerGitHub <noreply@github.com>2024-03-29 13:38:31 +0100
commit8f553f08f0347b73b34c80dddef228302cdf5977 (patch)
tree112ef05988be5a37bb08ec2aa06ed3727234bbae /ui/discovery/src/main/res/layout/select_country_dialog.xml
parent5ede21d676af8d879ec8f5d695255ccbf4398e76 (diff)
downloadAntennaPod-8f553f08f0347b73b34c80dddef228302cdf5977.zip
Add :ui:discovery module (#7037)
Diffstat (limited to 'ui/discovery/src/main/res/layout/select_country_dialog.xml')
-rw-r--r--ui/discovery/src/main/res/layout/select_country_dialog.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/ui/discovery/src/main/res/layout/select_country_dialog.xml b/ui/discovery/src/main/res/layout/select_country_dialog.xml
new file mode 100644
index 000000000..70f93bb77
--- /dev/null
+++ b/ui/discovery/src/main/res/layout/select_country_dialog.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <com.google.android.material.textfield.TextInputLayout
+ android:id="@+id/country_text_input"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="20dp"
+ android:hint="@string/select_country"
+ app:endIconMode="none"
+ style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu">
+
+ <AutoCompleteTextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ </com.google.android.material.textfield.TextInputLayout>
+
+</LinearLayout>