media_controller.xml
3.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/float_window" android:background="#aa0E0E0E"
android:layout_width="fill_parent" android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<SeekBar android:id="@+id/float_seekBar"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_centerHorizontal="true"
android:paddingRight="55dip"
android:paddingLeft="55dip"
android:paddingTop="10dip" />
<TextView android:id="@+id/float_currentTime"
android:textSize="14sp"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/float_seekBar"
android:layout_alignParentLeft="true"
android:layout_centerHorizontal="true"
android:paddingTop="10dip"
android:textColor="#ffffffff"
android:text="" />
<TextView android:id="@+id/float_totalTime"
android:textSize="14sp"
android:textStyle="bold"
android:layout_alignParentRight="true"
android:layout_alignBaseline="@id/float_seekBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="10dip"
android:textColor="#ffffffff"
android:text="" />
<ImageButton android:id="@+id/float_play_pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/pause"
android:layout_below="@id/float_seekBar"
android:layout_marginTop="20dip"
android:layout_marginBottom="10dip"
android:layout_centerHorizontal="true"
/>
<ImageButton android:id="@+id/float_forward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/forward"
android:layout_toRightOf="@id/float_play_pause"
android:layout_below="@id/float_seekBar"
android:layout_marginTop="22dip"
android:layout_marginLeft="35dip"
android:layout_marginBottom="10dip"
/>
<ImageButton android:id="@+id/float_backward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/backward"
android:layout_toLeftOf="@id/float_play_pause"
android:layout_below="@id/float_seekBar"
android:layout_marginTop="22dip"
android:layout_marginRight="35dip"
android:layout_marginBottom="10dip"
/>
<TextView android:id="@+id/float_curRate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/float_backward"
android:layout_marginRight="40dip"
android:layout_below="@id/float_seekBar"
android:layout_marginTop="22dip"
android:layout_marginBottom="10dip"
android:textSize="20sp"
/>
</RelativeLayout>