This repository has been archived by the owner on Jan 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 144
/
main.xml
72 lines (60 loc) · 2.97 KB
/
main.xml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:rsb="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Range seek bar initialized in code with ranges set"
/>
<LinearLayout android:id="@+id/seekbar_placeholder"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Range seek bar from xml with default range"
/>
<com.yahoo.mobile.client.android.util.rangeseekbar.RangeSeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Range seek bar from xml with ranges set"
/>
<com.yahoo.mobile.client.android.util.rangeseekbar.RangeSeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
rsb:absoluteMinValue="20"
rsb:absoluteMaxValue="150"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Range seek bar from xml with ranges set and double values"
/>
<com.yahoo.mobile.client.android.util.rangeseekbar.RangeSeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
rsb:absoluteMinValue="15.23"
rsb:absoluteMaxValue="140.54"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Range seek bar from xml with single thumb to true"
/>
<com.yahoo.mobile.client.android.util.rangeseekbar.RangeSeekBar
android:layout_width="fill_parent"
android:layout_height="wrap_content"
rsb:absoluteMinValue="20"
rsb:absoluteMaxValue="150"
rsb:singleThumb="true"
/>
</LinearLayout>