blob: 4a7ceca0c7c67a2d33deb669814a15697676d7e7 [file] [log] [blame]
The Android Open Source Project792a2202009-03-03 19:32:30 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<merge xmlns:android="http://schemas.android.com/apk/res/android">
18
19 <View
Romain Guy5ae9f472010-01-08 15:07:04 -080020 android:layout_width="match_parent"
The Android Open Source Project792a2202009-03-03 19:32:30 -080021 android:layout_height="1px"
22 android:background="#ffffffff" />
23
24 <LinearLayout
Romain Guy5ae9f472010-01-08 15:07:04 -080025 android:layout_width="match_parent"
The Android Open Source Project792a2202009-03-03 19:32:30 -080026 android:layout_height="wrap_content"
27 android:background="#ff5a5a5a"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070028 android:paddingTop="1dip"
29 android:paddingBottom="4dip"
The Android Open Source Project792a2202009-03-03 19:32:30 -080030 android:orientation="horizontal">
31
32 <TextView android:id="@+id/currenttime"
33 android:textAppearance="?android:attr/textAppearanceMedium"
34 android:textSize="14sp"
35 android:textStyle="bold"
36 android:shadowColor="#ff000000"
37 android:shadowDx="0"
38 android:shadowDy="0"
39 android:shadowRadius="3"
40 android:layout_gravity="bottom"
41 android:layout_weight="1"
42 android:layout_width="0dip"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070043 android:paddingLeft="5dip"
The Android Open Source Project792a2202009-03-03 19:32:30 -080044 android:layout_height="wrap_content" />
45
46 <LinearLayout
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:orientation="horizontal"
50 android:layout_gravity="bottom"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070051 android:layout_marginTop="1dip"
52 android:layout_marginBottom="2dip"
The Android Open Source Project792a2202009-03-03 19:32:30 -080053 android:gravity="center">
54
55 <com.android.music.RepeatingImageButton android:id="@+id/prev" style="@android:style/MediaButton.Previous" />
56
57 <ImageButton android:id="@+id/pause" style="@android:style/MediaButton.Play" />
58
59 <com.android.music.RepeatingImageButton android:id="@+id/next" style="@android:style/MediaButton.Next" />
60
61 </LinearLayout>
62
63 <TextView android:id="@+id/totaltime"
64 android:textAppearance="?android:attr/textAppearanceMedium"
65 android:textSize="14sp"
66 android:textStyle="bold"
67 android:shadowColor="#ff000000"
68 android:shadowDx="0"
69 android:shadowDy="0"
70 android:shadowRadius="3"
71 android:gravity="right"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070072 android:paddingRight="5dip"
The Android Open Source Project792a2202009-03-03 19:32:30 -080073 android:layout_gravity="bottom"
74 android:layout_weight="1"
75 android:layout_width="0dip"
76 android:layout_height="wrap_content" />
77
78 </LinearLayout>
79
80 <SeekBar android:id="@android:id/progress"
81 android:background="#ff5a5a5a"
82 style="?android:attr/progressBarStyleHorizontal"
Romain Guy5ae9f472010-01-08 15:07:04 -080083 android:layout_width="match_parent"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070084 android:layout_height="36dip"
Daniel Sandlerf3b2fb72009-08-20 14:17:53 -040085 android:paddingLeft="8dip"
86 android:paddingRight="8dip"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070087 android:paddingBottom="4dip" />
The Android Open Source Project792a2202009-03-03 19:32:30 -080088
89</merge>