public static final enum

ActionDrawer.DrawerMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.droidux.ui.widgets.actiondrawer.ActionDrawer.DrawerMode

Class Overview

Determines whether the drawer will be overlaid by the activity's content (exclusive action bar) or the whole window (inclusive action bar)

Summary

Enum Values
ActionDrawer.DrawerMode CONTENT_OVERLAY The drawer will be overlaid by the activity's content (exclusive action bar).
ActionDrawer.DrawerMode WINDOW_OVERLAY The drawer will be overlaid by the whole window (inclusive action bar)
Public Methods
static ActionDrawer.DrawerMode valueOf(String name)
final static DrawerMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ActionDrawer.DrawerMode CONTENT_OVERLAY

Since: API Level

The drawer will be overlaid by the activity's content (exclusive action bar).

Important: You must call the setContentView(int), or its variants, before building the the action drawer when the drawer's mode is set to CONTENT_OVERLAY. Compatibility Note: If you're using Toolbar as the action bar, this mode behaves the same as WINDOW_OVERLAY.

public static final ActionDrawer.DrawerMode WINDOW_OVERLAY

Since: API Level

The drawer will be overlaid by the whole window (inclusive action bar)

Public Methods

public static ActionDrawer.DrawerMode valueOf (String name)

Since: API Level 3.0

public static final DrawerMode[] values ()

Since: API Level 3.0