aboutsummaryrefslogtreecommitdiff
path: root/res/layout/jukebox_volume.xml
blob: 4bccaec74e5563ca8dba0705d062df876cbf30e8 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout
		android:background="@drawable/toast_frame"
		android:padding="20dip"
		android:layout_height="fill_parent"
		android:layout_width="fill_parent"
		android:orientation="vertical"
		android:id="@+id/toast_layout_root"
		xmlns:android="http://schemas.android.com/apk/res/android">

	<TextView
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:id="@+id/jukebox_volume_title"
		android:paddingBottom="12dp"
		android:paddingRight="32dp"
		android:paddingLeft="32dp"
		android:shadowRadius="2.75"
		android:shadowColor="#bb000000"
		android:textColor="#ffffffff"
		android:textAppearance="?android:attr/textAppearanceMedium"
		android:text="@string/download.jukebox_volume"
		android:gravity="center_horizontal"
		android:layout_alignParentTop="true"
		android:layout_alignParentRight="true"
		android:layout_alignParentLeft="true"/>

	<ImageView
		android:layout_height="wrap_content"
		android:layout_width="wrap_content"
		android:id="@+id/jukebox_volume_image"
		android:paddingRight="12dip"
		android:layout_alignParentLeft="true"
		android:layout_below="@+id/jukebox_volume_title"
		android:src="@drawable/volume"/>

	<SeekBar
		android:layout_height="wrap_content"
		android:layout_width="fill_parent"
		android:id="@+id/jukebox_volume_progress_bar"
		android:paddingBottom="3dp"
		android:layout_alignParentRight="true"
		android:layout_below="@+id/jukebox_volume_title"
		android:layout_toRightOf="@+id/jukebox_volume_image"
		android:indeterminate="false"/>
</RelativeLayout>