summaryrefslogtreecommitdiffstats
path: root/res/layout/controls_thumbnail.xml
blob: 17f53911013ee98cbd925f0ddb0b039328f52018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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>