aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/action_bar.xml
blob: 2aaa4116b1722304ae39d9937d9e2029d728548d (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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="45dp"
        android:background="@drawable/menubar_button_disabled">

    <ImageView
            android:id="@+id/actionbar_home_icon"
            android:src="@drawable/main_header_icon2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentBottom="true"
            android:paddingLeft="4dip"
            android:paddingRight="4dip"
            android:paddingTop="2dip"
            android:paddingBottom="2dip"
            android:scaleType="centerInside"
            />
			
	<ImageButton
            android:id="@+id/action_button_4"
            android:src="@drawable/action_settings"
            android:layout_width="44dip"
            android:layout_height="wrap_content"
			android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:scaleType="fitCenter"
            android:padding="5dp"
            android:background="@drawable/actionbar_button"
            />
			
	<ImageButton
            android:id="@+id/action_button_3"
            android:src="@drawable/action_help"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
			android:layout_toLeftOf="@id/action_button_4"
            android:scaleType="center"
            android:padding="5dp"
            android:background="@drawable/actionbar_button"
            />

    <ImageButton
            android:id="@+id/action_button_2"
            android:src="@drawable/action_search"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
			android:layout_toLeftOf="@id/action_button_3"
            android:scaleType="center"
            android:padding="5dp"
            android:background="@drawable/actionbar_button"
            />

    <ImageButton
            android:id="@+id/action_button_1"
            android:src="@drawable/action_shuffle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:layout_toLeftOf="@id/action_button_2"
            android:scaleType="center"
            android:padding="5dp"
            android:background="@drawable/actionbar_button"
            />

    <TextView
            android:id="@+id/actionbar_title_text"
            android:text="Subsonic"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:layout_toLeftOf="@id/action_button_1"
            android:layout_toRightOf="@id/actionbar_home_icon"
            android:gravity="center_vertical"
            android:textColor="#FFFFFF"
            android:textSize="18sp"
            android:textStyle="bold"
            android:shadowColor="#000000"
            android:shadowDx="1"
            android:shadowDy="1"
            android:shadowRadius="1"
            android:lineSpacingMultiplier="0.85"
            android:ellipsize="middle"
            android:inputType="none"
            />

</RelativeLayout>