blob: 1ee031d1960a6f899a30b790d9a5fb5ab13af261 [file] [log] [blame]
Marco Nelissen2deae772011-06-28 09:04:34 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
18
19 <item android:id="@android:id/background">
20 <shape>
21 <corners android:radius="5dip" />
22 <gradient
23 android:startColor="#ff9d9e9d"
24 android:centerColor="#ff5a5d5a"
25 android:centerY="0.75"
26 android:endColor="#ff747674"
27 android:angle="180"
28 />
29 </shape>
30 </item>
31
32 <item android:id="@android:id/secondaryProgress">
33 <clip>
34 <shape>
35 <corners android:radius="5dip" />
36 <gradient
37 android:startColor="#80ffd300"
38 android:centerColor="#80ffb600"
39 android:centerY="0.75"
40 android:endColor="#a0ffcb00"
41 android:angle="180"
42 />
43 </shape>
44 </clip>
45 </item>
46
47 <item android:id="@android:id/progress">
48 <clip
49 android:clipOrientation="vertical"
50 android:gravity="bottom">
51 <shape>
52 <corners android:radius="5dip" />
53 <gradient
54 android:startColor="#ffffd300"
55 android:centerColor="#ffffb600"
56 android:centerY="0.75"
57 android:endColor="#ffffcb00"
58 android:angle="180"
59 />
60 </shape>
61 </clip>
62 </item>
63
64</layer-list>
65