This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// implement like this: | |
var window = Ti.UI.createWindow({ | |
backgroundColor:'#fff' | |
}); | |
// draw the gridlines first so your other elements stack on top of them | |
// without requiring you to set the z-index property of each | |
var grid = require('gridlines'); | |
grid.drawgrid(10,window); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createNotification() { | |
var mainIntent = Titanium.Android.createIntent({ | |
className: 'org.appcelerator.titanium.TiActivity', | |
packageName: 'com.appcelerator.foo' | |
}); | |
var pending = Titanium.Android.createPendingIntent({ | |
activity: Titanium.Android.currentActivity, | |
intent: mainIntent, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this sets the background color of the master UIView (when there are no windows/tab groups on it) | |
Titanium.UI.setBackgroundColor('#000'); | |
// create tab group | |
var tabGroup = Titanium.UI.createTabGroup(); | |
// | |
// create base UI tab and root window | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Custom logger | |
// usage | |
var console = require('/logger'); | |
console.log({sdf:"df"}, [1,3,5,6], "sdfsdf"); | |
*/ | |
exports.log = function() { | |
if(Ti.App.Properties.getBool('production')==false) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Utils = { | |
/* modified version of https://gist.github.com/1243697 | |
* adds detection of file extension rather than hard-coding .jpg as in the original | |
*/ | |
_getExtension: function(fn) { | |
// from http://stackoverflow.com/a/680982/292947 | |
var re = /(?:\.([^.]+))?$/; | |
var tmpext = re.exec(fn)[1]; | |
return (tmpext) ? tmpext : ''; | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// tested on Titanium 2.1.0.v20120621224153 on iOS and Android 2.2 | |
// this sets the background color of the master UIView (when there are no windows/tab groups on it) | |
Titanium.UI.setBackgroundColor('#000'); | |
// create tab group | |
var tabGroup = Titanium.UI.createTabGroup(); | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?><manifest android:versionCode="1" android:versionName="1" package="com.appcelerator.holotheme" xmlns:android="http://schemas.android.com/apk/res/android"> | |
<uses-sdk android:minSdkVersion="8"/> | |
<uses-sdk android:targetSdkVersion="14"/> | |
<!-- TI_MANIFEST --> | |
<application android:debuggable="false" android:icon="@drawable/appicon" android:label="HoloTheme" android:name="HolothemeApplication" android:theme="@android:style/Theme.Holo.Light"> | |
<!-- TI_APPLICATION --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doClick(e) { | |
if(OS_IOS) { | |
if(Ti.Platform.canOpenURL('Urlschemes://')) { | |
Ti.Platform.openURL('Urlschemes://'); | |
} else { | |
alert('You must install the Urlschemes app first'); | |
} | |
} else { | |
var didItWork = Ti.Platform.openURL('urlschemes://'); | |
if(!didItWork) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function urlParser(url) { | |
url = url.replace(/[Uu]rlschemes:\/\/\?/,""); | |
return url.split('&'); | |
} | |
// check for arguments passed to this app | |
if(OS_IOS) { | |
function grabArguments() { | |
var args = Ti.App.getArguments(); | |
if(args.url) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// define your leftView and rightView content views here... | |
var Win = require('ui/components/splitwindow'), | |
win = new Win({ | |
splitWidth: 300, | |
masterTitle: 'Master', | |
detailTitle: 'Details', | |
navBarHidden: true, | |
backgroundColor: 'transparent', | |
}, leftView, rightView); | |
win.open(); |
OlderNewer