summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorAngus Kong <shkong@google.com>2014-02-25 22:50:27 -0800
committerAngus Kong <shkong@google.com>2014-02-28 10:11:57 -0800
commitf747b78d0108da337e755eac6b26e2c3feb275d8 (patch)
treeb4b886f54bae08d20ab678ff2b5e51d6d65e6b2f /res/drawable
parent7a9c4d1eb69bd33ec8fa0273a4da578327e98c89 (diff)
downloadandroid_packages_apps_Camera2-f747b78d0108da337e755eac6b26e2c3feb275d8.tar.gz
android_packages_apps_Camera2-f747b78d0108da337e755eac6b26e2c3feb275d8.tar.bz2
android_packages_apps_Camera2-f747b78d0108da337e755eac6b26e2c3feb275d8.zip
Change progress bar color
bug:13026663 Change-Id: I81171fee34c8cba21a74c1fbadc25f82e853143d
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/bottom_progress_bar.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/res/drawable/bottom_progress_bar.xml b/res/drawable/bottom_progress_bar.xml
new file mode 100644
index 000000000..fa8d3adce
--- /dev/null
+++ b/res/drawable/bottom_progress_bar.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item android:id="@android:id/background"
+ android:drawable="@drawable/progress_bg" />
+
+ <item android:id="@android:id/progress">
+ <scale android:scaleWidth="100%"
+ android:drawable="@drawable/progress_primary" />
+ </item>
+
+</layer-list>