summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/numberpicker.xml
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2018-09-26 16:59:51 +0200
committerByteHamster <info@bytehamster.com>2018-09-26 16:59:51 +0200
commit9fee2110c792ace57bfc82a70f1b41dc50905b4b (patch)
tree68abff571799dc39dcc5023f578111651fafe81f /app/src/main/res/layout/numberpicker.xml
parent819d2df8ed42dd67c544def71462000935438323 (diff)
downloadAntennaPod-9fee2110c792ace57bfc82a70f1b41dc50905b4b.zip
Implemented number picker preference
Diffstat (limited to 'app/src/main/res/layout/numberpicker.xml')
-rw-r--r--app/src/main/res/layout/numberpicker.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/numberpicker.xml b/app/src/main/res/layout/numberpicker.xml
new file mode 100644
index 000000000..813326bd6
--- /dev/null
+++ b/app/src/main/res/layout/numberpicker.xml
@@ -0,0 +1,16 @@
+<?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="32dp">
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="numberDecimal"
+ android:ems="10"
+ android:selectAllOnFocus="true"
+ android:id="@+id/number" />
+
+</LinearLayout>