diff options
Diffstat (limited to 'main/res/layout/wp_threshold_preference.xml')
| -rw-r--r-- | main/res/layout/wp_threshold_preference.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/main/res/layout/wp_threshold_preference.xml b/main/res/layout/wp_threshold_preference.xml new file mode 100644 index 0000000..22ffe9a --- /dev/null +++ b/main/res/layout/wp_threshold_preference.xml @@ -0,0 +1,26 @@ +<?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="wrap_content" + android:orientation="horizontal" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:paddingTop="8dp" > + + <SeekBar + android:id="@+id/wp_threshold_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:paddingRight="8dp" + android:layout_weight="1" /> + + <TextView + android:id="@+id/wp_threshold_value_view" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="center" + android:gravity="center" + android:layout_weight="5" /> + +</LinearLayout> |
