Since: API Level 3.0
public static interface

ActionDrawer.Callback

com.droidux.ui.widgets.actiondrawer.ActionDrawer.Callback

Class Overview

Callback interface for action drawer. Called during the action drawer's lifecycle.

The action drawer's lifecycle is as follows:

Summary

Public Methods
abstract View onCreateDrawerView()
Called when the action drawer is first created.
abstract boolean onPrepareDrawerView(View drawerView)
Called before the action drawer is shown.

Public Methods

public abstract View onCreateDrawerView ()

Since: API Level 3.0

Called when the action drawer is first created.

Returns
  • The drawer view.

public abstract boolean onPrepareDrawerView (View drawerView)

Since: API Level 3.0

Called before the action drawer is shown.

Parameters
drawerView The drawer view. This is the same view created during the onCreateDrawerView() cycle.
Returns
  • true if the drawer was updated, false otherwise.