summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/edit_text_dialog.xml
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-11-06 18:30:43 +0100
committerByteHamster <info@bytehamster.com>2019-11-06 18:44:08 +0100
commitfdd29fa3ece59c9b028bf324160a481a192f0db1 (patch)
treef2adaf9de156a7aee44d9db52d57bd7e20b18306 /app/src/main/res/layout/edit_text_dialog.xml
parent9df14af284bbaf719c21657c66a75478a874194e (diff)
downloadAntennaPod-fdd29fa3ece59c9b028bf324160a481a192f0db1.zip
Removed MaterialDialog dependency
The AlertDialogs from Androidx are material, too.
Diffstat (limited to 'app/src/main/res/layout/edit_text_dialog.xml')
-rw-r--r--app/src/main/res/layout/edit_text_dialog.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/src/main/res/layout/edit_text_dialog.xml b/app/src/main/res/layout/edit_text_dialog.xml
new file mode 100644
index 000000000..6bf0bc6cb
--- /dev/null
+++ b/app/src/main/res/layout/edit_text_dialog.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:padding="16dp">
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:ems="10"
+ android:id="@+id/text" />
+
+</LinearLayout>