diff options
author | George Mount <mount@google.com> | 2014-11-19 14:05:57 -0800 |
---|---|---|
committer | George Mount <mount@google.com> | 2014-11-19 14:14:53 -0800 |
commit | 2db3bf5c49ebcd56f02f10145aa40b2445f6be06 (patch) | |
tree | a96b34a7a316ff5286dea46a3b7c05a9e5c57c3d /core/res | |
parent | 800bf3ae6e9affb151b3b0b368c4a3dd22bb1fa0 (diff) | |
download | frameworks_base-2db3bf5c49ebcd56f02f10145aa40b2445f6be06.zip frameworks_base-2db3bf5c49ebcd56f02f10145aa40b2445f6be06.tar.gz frameworks_base-2db3bf5c49ebcd56f02f10145aa40b2445f6be06.tar.bz2 |
Slide supports Gravity.START and Gravity.END.
Bug 18444396
Change-Id: Id7b82b44948e4501c2b4fb5302d22672fa20cd00
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/values/attrs.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index b1af4aa..bad07d9 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -5660,6 +5660,10 @@ <enum name="right" value="0x05" /> <!-- Slide to and from the bottom edge of the Scene. --> <enum name="bottom" value="0x50" /> + <!-- Slide to and from the x-axis position at the start of the Scene root. --> + <enum name="start" value="0x00800003"/> + <!-- Slide to and from the x-axis position at the end of the Scene root. --> + <enum name="end" value="0x00800005"/> </attr> </declare-styleable> |