Files
dolphin/Externals/android-menudrawer/library/src/net/simonvt/menudrawer/Position.java

19 lines
360 B
Java

package net.simonvt.menudrawer;
/**
* Enums used for positioning the drawer.
*/
public enum Position {
// Positions the drawer to the left of the content.
LEFT,
// Positions the drawer above the content.
TOP,
// Positions the drawer to the right of the content.
RIGHT,
// Positions the drawer below the content.
BOTTOM,
}