public static final enum

ActionBar.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ greendroid.widget.ActionBar.Type

Class Overview

The Type specifies the layout of the ActionBar.

Summary

Enum Values
ActionBar.Type  Dashboard  ActionBar layout will contain the application Drawable on the left and optional ActionBarItems on the right. 
ActionBar.Type  Empty  ActionBar layout will contain optional ActionBarItems on the right. 
ActionBar.Type  Normal  ActionBar layout will contain a home item on the left and optional ActionBarItems on the right. 
Public Methods
static ActionBar.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ActionBar.Type Dashboard

ActionBar layout will contain the application Drawable on the left and optional ActionBarItems on the right. Please note the Dashboard type does not display the title of the current Activity.

public static final ActionBar.Type Empty

ActionBar layout will contain optional ActionBarItems on the right. The space that left will be used to display the title of the current Activity.

public static final ActionBar.Type Normal

ActionBar layout will contain a home item on the left and optional ActionBarItems on the right. The space that left between is used to display the title of the current Activity.

Public Methods

public static ActionBar.Type valueOf (String name)

public static final Type[] values ()