layout_gesture_detector.xml
1.59 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rlRoot"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/llAdJust"
android:layout_width="@dimen/rmrb_dp204"
android:layout_height="@dimen/rmrb_dp32"
android:layout_centerInParent="true"
android:background="@drawable/shape_bg_solid_66000000_radious16"
android:orientation="horizontal"
android:visibility="gone"
tools:visibility="visible">
<ImageView
android:id="@+id/ivLogo"
android:layout_width="@dimen/rmrb_dp24"
android:layout_height="@dimen/rmrb_dp24"
android:layout_gravity="center_vertical"
android:layout_marginStart="@dimen/rmrb_dp16"
android:src="@mipmap/ic_adjust_brightness" />
<SeekBar
android:id="@+id/seekBar"
android:layout_width="@dimen/rmrb_dp132"
android:layout_height="@dimen/rmrb_dp2"
android:layout_gravity="center_vertical"
android:layout_marginStart="@dimen/rmrb_dp8"
style="?android:attr/progressBarStyleHorizontal"
android:progress="10"
android:max="100"
android:thumb="@null"
android:splitTrack="false"
android:progressDrawable="@drawable/shape_gradient_adjust_volume" />
</LinearLayout>
</RelativeLayout>