-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.xml
53 lines (53 loc) · 1.59 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
<LinearLayout
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="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="start from name"
android:textSize="25sp"
android:textColor="#000000" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="start from path"
android:textSize="25sp"
android:textColor="#000000" />
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="start from url"
android:textSize="25sp"
android:textColor="#000000" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="start"
android:textSize="25sp"
android:textColor="#000000" />
<Button
android:id="@+id/button5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="pause"
android:textSize="25sp"
android:textColor="#000000" />
<SeekBar
android:id="@+id/seekbar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp" />
</LinearLayout>