diff options
| author | 2014-07-24 13:40:47 -0700 | |
|---|---|---|
| committer | 2014-07-28 20:37:24 +0000 | |
| commit | d17ac54df35e7dcdc40c2c2338c36b3ee1709c95 (patch) | |
| tree | 9767cf1537c7b9cd56a3e2a499ed96e758f6920f | |
| parent | d92e726cbe52da3197c5001b8cc4e42ed2caae31 (diff) | |
Fix slide edge constants to match the gravity values.
Bug 16544683
Change-Id: If9aeb585d5c3eb3a984288c09510e1dde0c03045
| -rw-r--r-- | core/res/res/values/attrs.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 184198b5fa6e..19d58c74589c 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -5458,14 +5458,14 @@ described here. --> <declare-styleable name="Slide"> <attr name="slideEdge"> + <!-- Slide to and from the left edge of the Scene. --> + <enum name="left" value="0x03" /> + <!-- Slide to and from the top edge of the Scene. --> + <enum name="top" value="0x30" /> + <!-- Slide to and from the right edge of the Scene. --> + <enum name="right" value="0x05" /> <!-- Slide to and from the bottom edge of the Scene. --> - <enum name="left" value="0" /> - <!-- Slide to and from the bottom edge of the Scene. --> - <enum name="top" value="1" /> - <!-- Slide to and from the bottom edge of the Scene. --> - <enum name="right" value="2" /> - <!-- Slide to and from the bottom edge of the Scene. --> - <enum name="bottom" value="3" /> + <enum name="bottom" value="0x50" /> </attr> </declare-styleable> |