# Titanium.Android.ActionBar
An action bar is a window feature that identifies the application and user location, and provides user actions and navigation modes.
# Overview
You can add action items to the action bar by defining an Android menu and setting the menu items to display as action items. See Titanium.Android.Menu and Titanium.Android.MenuItem for details.
You cannot change the action bar's settings until the window's Titanium.UI.Window.activity or tab group's Titanium.UI.TabGroup.activity has been created. You can detect this by assigning a callback to the activity's Titanium.Android.Activity.onCreate property.
Note that setting the Titanium.UI.Window.navBarHidden property to true disables the Action Bar since it is part of the navigation title bar.
For more examples on using the Action Bar, refer to the Android Action Bar guide (opens new window).
# Application Notes for Alloy
Starting with Alloy 1.5.0, you can add ActionBar attributes to the ActionBar
element.
To use the action bar, add the <ActionBar>
tag as a child of either a
a <Window>
or <TabGroup>
, then set ActionBar attributes in either the XML or TSS file.
Starting with Alloy 1.4.0, you can also add ActionBar attributes to the Menu
element.
Do not define ActionBar attributes in both the ActionBar
and Menu
elements. Only define the
attributes in one element.
To add action items to the action bar, add the <Menu>
tag as a child of either
a <Window>
or <TabGroup>
, then add <MenuItem>
tags as children of the <Menu>
tag.
Set MenuItem attributes in either the XML or TSS file.
For an example of using the Action Bar with Alloy, see "Action Bar using Alloy XML Markup" below.
# Examples
# Action Bar using Alloy XML Markup
Adds action items and sets several properties on a window's action bar in the XML and TSS files.
app/views/index.xml
:
<Alloy>
<Window title="My Test App">
<ActionBar id="actionbar" title="My XML Menu" onHomeIconItemSelected="doMenuClick" />
<Menu>
<MenuItem id="item1" title="Settings" onClick="openSettings" />
<MenuItem id="item2" title="Search" onClick="doSearch" />
</Menu>
<Label id="label">Welcome!</Label>
</Window>
</Alloy>
app/controllers/index.js
:
function doMenuClick() {}
function openSettings() {}
function doSearch() {}
$.index.open();
app/styles/index.tss
:
"MenuItem": {
showAsAction: Ti.Android.SHOW_AS_ACTION_ALWAYS
},
"#item1": {
icon: Ti.Android.R.drawable.ic_menu_preferences
},
"#item2": {
icon: Ti.Android.R.drawable.ic_menu_search
},
"#actionbar": {
icon: "/actionicon.png",
displayHomeAsUp: true,
backgroundImage: "/actionbackground.png"
}
# Action Bar Example
The following example sets several properties on a window's action bar.
const win = Ti.UI.createWindow({
title: "Old Title",
navBarHidden: false
});
if (OS_ANDROID) {
win.activity.onCreate = () => {
const actionBar = win.activity.actionBar;
if (actionBar) {
actionBar.backgroundImage = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, 'bg.png').nativePath;
actionBar.title = "New Title";
actionBar.onHomeIconItemSelected = () => {
Ti.API.info("Home icon clicked!");
};
}
};
}
win.open();
The above can be done for a tab group via its Titanium.UI.TabGroup.activity property. Note that individual tab windows do not have an activity. Only the root tab group (which hosts the tabs) provides an activity property.
# Properties
# apiName READONLY
The name of the API that this proxy corresponds to.
The value of this property is the fully qualified name of the API. For example, Titanium.UI.Button
returns Ti.UI.Button
.
# backgroundImage
The background image for the action bar, specified as a local file path or URL.
# bubbleParent
Indicates if the proxy will bubble an event to its parent.
Some proxies (most commonly views) have a relationship to other proxies, often established by the add() method. For example, for a button added to a window, a click event on the button would bubble up to the window. Other common parents are table sections to their rows, table views to their sections, and scrollable views to their views. Set this property to false to disable the bubbling to the proxy's parent.
Default: true
# customView
Sets a view to be used for a custom navigation mode.
Inserts a custom view for navigation in the space between the application's home button and menu actions. The custom view is trimmed to fit the space available.
# displayHomeAsUp
Displays an "up" affordance on the "home" area of the action bar.
See also: setDisplayHomeAsUpEnabled in the Android Developer Reference.
# homeAsUpIndicator
Sets a custom icon for the "home" button in the corner of the action bar.
Can be set to a String
file path or URL to an image, to an image blob, or to a resource ID
from Ti.App.Android.R.drawable.*
or Ti.Android.R.drawable.*
. It's highly recommended to set this
to a vector drawable resource ID.
Enable or disable the "home" button in the corner of the action bar.
See also: setHomeButtonEnabled in the Android Developer Reference.
# icon
Sets the application icon displayed in the "home" area of the action bar.
Before Titanium 11.0.0, this property only supports a String
and it must be assigned a local file path
or URL to an image.
As of Titanium 11.0.0, this property can also be assigned an image blob or a native drawable resource ID
from Ti.App.Android.R.drawable.*
or Ti.Android.R.drawable.*
.
# lifecycleContainer
The Window or TabGroup whose Activity lifecycle should be triggered on the proxy.
If this property is set to a Window or TabGroup, then the corresponding Activity lifecycle event callbacks will also be called on the proxy. Proxies that require the activity lifecycle will need this property set to the appropriate containing Window or TabGroup.
# logo
Sets the application logo displayed in the "home" area of the action bar.
Before Titanium 11.0.0, this property only supports a String
and it must be assigned a local file path
or URL to an image.
As of Titanium 11.0.0, this property can also be assigned an image blob or a native drawable resource ID
from Ti.App.Android.R.drawable.*
or Ti.Android.R.drawable.*
.
Controls the navigation mode.
The navigation mode can be NAVIGATION_MODE_STANDARD, or NAVIGATION_MODE_TABS.
A TabGroup is initialized by Titanium Mobile with NAVIGATION_MODE_TABS
, and can be hidden by setting to NAVIGATION_MODE_STANDARD
. NAVIGATION_MODE_LIST
is not yet supported.
See also: setNavigationMode
in the Android Developer Reference.
# onHomeIconItemSelected
Callback function called when the home icon is clicked.
# Methods
# addEventListener
Adds the specified callback as an event listener for the named event.
Parameters
Name | Type | Description |
---|---|---|
name | String | Name of the event. |
callback | Callback<Titanium.Event> | Callback function to invoke when the event is fired. |
Returns
- Type
- void
# applyProperties
Applies the properties to the proxy.
Properties are supplied as a dictionary. Each key-value pair in the object is applied to the proxy such that myproxy[key] = value.
Parameters
Name | Type | Description |
---|---|---|
props | Dictionary | A dictionary of properties to apply. |
Returns
- Type
- void
# fireEvent
Fires a synthesized event to any registered listeners.
Parameters
Name | Type | Description |
---|---|---|
name | String | Name of the event. |
event | Dictionary | A dictionary of keys and values to add to the Titanium.Event object sent to the listeners. |
Returns
- Type
- void
# hide
Hides the action bar if it is currently showing.
See also: hide in the Android API Reference.
Returns
- Type
- void
# removeEventListener
Removes the specified callback as an event listener for the named event.
Multiple listeners can be registered for the same event, so the
callback
parameter is used to determine which listener to remove.
When adding a listener, you must save a reference to the callback function in order to remove the listener later:
var listener = function() { Ti.API.info("Event listener called."); }
window.addEventListener('click', listener);
To remove the listener, pass in a reference to the callback function:
window.removeEventListener('click', listener);
Parameters
Name | Type | Description |
---|---|---|
name | String | Name of the event. |
callback | Callback<Titanium.Event> | Callback function to remove. Must be the same function passed to |
Returns
- Type
- void
# setDisplayShowHomeEnabled
Shows or hides the action bar home icon
See also: setDisplayShowHomeEnabled in the Android API Reference.
Parameters
Name | Type | Description |
---|---|---|
show | Boolean | Boolean to show or hide action bar home icon |
Returns
- Type
- void
# setDisplayShowTitleEnabled
Shows or hides the action bar title/subtitle
See also: setDisplayShowTitleEnabled in the Android API Reference.
Parameters
Name | Type | Description |
---|---|---|
show | Boolean | Boolean to show or hide action bar title/subtitle |
Returns
- Type
- void