layout_main_show_videomake.xml
2.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="823dp"
android:layout_height="423dp"
android:background="@drawable/bg_userinfo1" >
<TextView
android:id="@+id/txt_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="43dp"
android:layout_marginTop="20dp"
android:gravity="center"
android:textStyle="bold"
android:text="@string/string_video_report"
android:textColor="@color/color_white"
android:textSize="@dimen/text_size_22"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
app:layout_constraintHorizontal_bias="0.0" />
<RelativeLayout
android:id="@+id/txt_con"
android:layout_width="600dp"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_below="@+id/txt_tip"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.5"
app:layout_constraintHorizontal_bias="0.5" >
<com.sw.laryngoscope.widget.TextThumbSeekBar2
android:id="@+id/sb_con"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_marginTop="50dp"
android:maxHeight="8dp"
android:minHeight="8dp"
android:max="100"
android:progress="0"
android:splitTrack="false"
android:clickable="false"
android:layout_centerInParent="true"
android:progressDrawable="@drawable/progress_bar"
android:thumb="@drawable/shape_thumb_round"
android:paddingStart="0dp"
android:paddingEnd="0dp"
android:thumbOffset="0dp" />
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>