summaryrefslogtreecommitdiffstats
path: root/res/layout/controls_thumbnail.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/controls_thumbnail.xml')
-rw-r--r--res/layout/controls_thumbnail.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/res/layout/controls_thumbnail.xml b/res/layout/controls_thumbnail.xml
new file mode 100644
index 0000000..17f5391
--- /dev/null
+++ b/res/layout/controls_thumbnail.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="64dp"
+ android:layout_height="64dp"
+ android:theme="@android:style/Theme.Material">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1">
+
+ <CheckBox
+ android:layout_width="32dp"
+ android:layout_height="match_parent"
+ android:checked="true" />
+
+ <RadioButton
+ android:layout_width="32dp"
+ android:layout_height="match_parent"
+ android:checked="true"/>
+
+ </LinearLayout>
+
+ <SeekBar
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:layout_marginStart="-10dp"
+ android:layout_marginEnd="-10dp"
+ android:max="100"
+ android:progress="50"/>
+
+</LinearLayout> \ No newline at end of file