Skip to content

Instantly share code, notes, and snippets.

@Mode54
Mode54 / ActionBarView.js
Created July 22, 2012 16:00
Action Bar Module for Titanium Mobile
/*
* Android API Guide
* http://developer.android.com/guide/topics/ui/actionbar.html
* Android Design Guide
* http://developer.android.com/design/patterns/actionbar.html
* Titanium Mobile will support someday
* https://jira.appcelerator.org/browse/TIMOB-2371
*/
var osName = Ti.Platform.osname,
isAndroid = osName==='android',
@Mode54
Mode54 / Indicator.js
Created February 23, 2012 20:25
Titanium Mobile indicator module (iOS only so far)
var isIndicatorOpen = false,
view = Ti.UI.createView({
backgroundColor : "#000",
borderRadius : 10,
opacity : 0.8
}),
// message
message = Ti.UI.createLabel({
color : "#fff",
width : "auto",