Example usage for android.support.v4.app ActionBar DISPLAY_SHOW_HOME

List of usage examples for android.support.v4.app ActionBar DISPLAY_SHOW_HOME

Introduction

In this page you can find the example usage for android.support.v4.app ActionBar DISPLAY_SHOW_HOME.

Prototype

int DISPLAY_SHOW_HOME

To view the source code for android.support.v4.app ActionBar DISPLAY_SHOW_HOME.

Click Source Link

Document

Show 'home' elements in this action bar, leaving more space for other navigation elements.

Usage

From source file:org.androidui.app.ActionBarImpl.java

@Override
public void setDisplayShowHomeEnabled(boolean showHome) {
    setDisplayOptions(showHome ? ActionBar.DISPLAY_SHOW_HOME : 0, ActionBar.DISPLAY_SHOW_HOME);
}