summaryrefslogtreecommitdiffstats
path: root/res/values/attrs.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:58 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2008-12-17 18:05:58 -0800
commitd097a1880f2339705486d50cd8b33c6088fa9fa5 (patch)
tree711ec61755822f2bda1d4b2719691db2142ed607 /res/values/attrs.xml
parentc8f00b61c600927ab404c84686d4472e9b527976 (diff)
downloadandroid_packages_apps_Trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.tar.gz
android_packages_apps_Trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.tar.bz2
android_packages_apps_Trebuchet-d097a1880f2339705486d50cd8b33c6088fa9fa5.zip
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'res/values/attrs.xml')
-rw-r--r--res/values/attrs.xml24
1 files changed, 18 insertions, 6 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index caa243849..87f5b788b 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -17,6 +17,16 @@
-->
<resources>
+ <!-- Orientation of a widget. -->
+ <attr name="direction">
+ <!-- Vertical widget. -->
+ <enum name="vertical" value="0" />
+ <!-- Horizontal widget. -->
+ <enum name="horizontal" value="1" />
+ </attr>
+
+ <skip />
+
<!-- Workspace specific attributes. These attributes are used to customize
the workspace in XML files. -->
<declare-styleable name="Workspace">
@@ -49,12 +59,14 @@
a DeleteZone view in XML files. -->
<declare-styleable name="DeleteZone">
<!-- Orientation of the delete zone. -->
- <attr name="direction">
- <!-- Vertical delete zone. -->
- <enum name="vertical" value="0" />
- <!-- Horizontal delete zone. This is the default value. -->
- <enum name="horizontal" value="1" />
- </attr>
+ <attr name="direction" />
+ </declare-styleable>
+
+ <!-- HandleView specific attributes. These attributes are used to customize
+ a HandleView view in XML files. -->
+ <declare-styleable name="HandleView">
+ <!-- Orientation of the handle. -->
+ <attr name="direction" />
</declare-styleable>
</resources>