Fix slide edge constants to match the gravity values.

Bug 16544683

Change-Id: If9aeb585d5c3eb3a984288c09510e1dde0c03045
This commit is contained in:
George Mount
2014-07-24 13:40:47 -07:00
parent d92e726cbe
commit d17ac54df3

View File

@@ -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>