abouttreesummaryrefslogcommitdiff
path: root/res/layout/dialog_edit_text.xml
diff options
context:
space:
mode:
authorJules Aguillon2023-08-10 12:55:27 +0200
committerJules Aguillon2023-08-16 12:20:40 +0200
commit8611dbcfa0ef6d551bf3acb65e5a1990a3ced75b (patch)
treecd6ab6b3be1ed3e93eef4d97e83c1718515b3961 /res/layout/dialog_edit_text.xml
parent03f2b8df7031baf5bc95ad1d1530e327c9d3ca7c (diff)
downloadunexpected-keyboard-8611dbcfa0ef6d551bf3acb65e5a1990a3ced75b.tar.gz
unexpected-keyboard-8611dbcfa0ef6d551bf3acb65e5a1990a3ced75b.zip
CustomExtraKeysPreference: Reusable edit text layout
This layout is generically used by CustomExtraKeysPreference and LayoutsPreference.
Diffstat (limited to 'res/layout/dialog_edit_text.xml')
-rw-r--r--res/layout/dialog_edit_text.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/res/layout/dialog_edit_text.xml b/res/layout/dialog_edit_text.xml
new file mode 100644
index 0000000..ad07947
--- /dev/null
+++ b/res/layout/dialog_edit_text.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content">
+ <EditText android:id="@+id/text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="10dp"/>
+</LinearLayout>