Skip to content

Instantly share code, notes, and snippets.

View Ganeshkumarcaro's full-sized avatar

Ganeshkumarcaro

View GitHub Profile
@dawsontoth
dawsontoth / notificationsInAndroid.js
Created March 4, 2011 22:33
Notifications in Android using Titanium Appcelerator Mobile
var win = Ti.UI.createWindow({ backgroundColor: '#fff' });
win.add(Ti.UI.createLabel({ text: 'Look for the notification! It should be there now.' }));
win.open();
Titanium.Android.NotificationManager.notify(
0, // <-- this is an ID that we can use to clear the notification later
Ti.Android.createNotification({
contentTitle: 'Cheese, Gromit!',
contentText: 'Swiss',
tickerText: 'Our app made a notification!',