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

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

Introduction

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

Prototype

int DISPLAY_SHOW_TITLE

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

Click Source Link

Document

Show the activity title and subtitle, if present.

Usage

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

@Override
public void setDisplayShowTitleEnabled(boolean showTitle) {
    setDisplayOptions(showTitle ? ActionBar.DISPLAY_SHOW_TITLE : 0, ActionBar.DISPLAY_SHOW_TITLE);
}