Update to platforms;android-28.
[android_tools.git] / sdk / platforms / android-28 / data / res / drawable / progress_horizontal.xml
blob57d85898a4dd3cb57f24f6e39fecb57556d14be0
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2008 The Android Open Source Project
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
8           http://www.apache.org/licenses/LICENSE-2.0
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 -->
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="270"
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="270"
42                 />
43             </shape>
44         </clip>
45     </item>
46     
47     <item android:id="@android:id/progress">
48         <clip>
49             <shape>
50                 <corners android:radius="5dip" />
51                 <gradient
52                         android:startColor="#ffffd300"
53                         android:centerColor="#ffffb600"
54                         android:centerY="0.75"
55                         android:endColor="#ffffcb00"
56                         android:angle="270"
57                 />
58             </shape>
59         </clip>
60     </item>
61     
62 </layer-list>