summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-09-13 14:48:22 -0400
committerChris Wren <cwren@android.com>2012-09-13 15:01:12 -0400
commit651ee92128e1899957758abeeb1c2c669f240093 (patch)
tree1b881567e004ed733e9e6154c469ffc47b0c17bc /res/drawable
parentf98687b22f4091083287ab7de7a0f3102bd9c1ba (diff)
downloadandroid_packages_screensavers_PhotoTable-651ee92128e1899957758abeeb1c2c669f240093.tar.gz
android_packages_screensavers_PhotoTable-651ee92128e1899957758abeeb1c2c669f240093.tar.bz2
android_packages_screensavers_PhotoTable-651ee92128e1899957758abeeb1c2c669f240093.zip
add vignetting to the photo table
Change-Id: I329b14ffdc70cc21e16f917fd06a4c2b1f1e27b6
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/vignette_br.xml26
-rw-r--r--res/drawable/vignette_tl.xml26
2 files changed, 52 insertions, 0 deletions
diff --git a/res/drawable/vignette_br.xml b/res/drawable/vignette_br.xml
new file mode 100644
index 0000000..517fa5b
--- /dev/null
+++ b/res/drawable/vignette_br.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 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.
+-->
+<shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <gradient
+ android:startColor="@color/vignette_light"
+ android:centerColor="@color/vignette_light"
+ android:endColor="@color/vignette_dark"
+ android:type="linear"
+ android:angle="315"
+ />
+</shape>
diff --git a/res/drawable/vignette_tl.xml b/res/drawable/vignette_tl.xml
new file mode 100644
index 0000000..d6a0646
--- /dev/null
+++ b/res/drawable/vignette_tl.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2012 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.
+-->
+<shape
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <gradient
+ android:startColor="@color/vignette_light"
+ android:centerColor="@color/vignette_light"
+ android:endColor="@color/vignette_dark"
+ android:type="linear"
+ android:angle="135"
+ />
+</shape>