summaryrefslogtreecommitdiff
path: root/res/drawable
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-08-29 15:57:23 -0400
committerChris Wren <cwren@android.com>2012-08-30 07:59:53 -0400
commit23f9b01ba3f51a33a2ba92bca7d7a53f25b1b146 (patch)
treec5f5fbc1a21c8d54e7de161eaa6318364e5b80ae /res/drawable
parent20e2554251954f6757462ab13470c1ebdcfba62e (diff)
downloadPhotoTable-23f9b01ba3f51a33a2ba92bca7d7a53f25b1b146.tar.gz
PhotoTable Polish:
+ remove manual rotation + better icon + gradient background + remove tap to dismiss + (temporarily disabled) flick to replace Change-Id: I2177077e37ce07a131a67bfbd11f8a447775ab98
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/table.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/res/drawable/table.xml b/res/drawable/table.xml
new file mode 100644
index 0000000..4663f51
--- /dev/null
+++ b/res/drawable/table.xml
@@ -0,0 +1,30 @@
+<?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:angle="90"
+ android:startColor="@color/tabletop_light"
+ android:endColor="@color/tabletop_dark"
+ android:type="linear"
+ />
+ <padding
+ android:left="10dp"
+ android:top="10dp"
+ android:right="10dp"
+ android:bottom="10dp" />
+</shape>