Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

IS there any LocalNotification available in Android.(some thing similar to Titanium.App.iOS.scheduleLocalNotification)

I need some simple notification(like alert) for Android Platform, even if my application closed. Is it possible in Titanium?

share|improve this question

1 Answer

up vote 3 down vote accepted

In android you can also fire notification but it will not be shown as alert box. Instead it will be shown in notification area. Here is code snippet to to fire notification in android.

alarmTimeIntent = Ti.Android.createIntent({
                className: 'org.appcelerator.titanium.TiActivity',
                packageName: 'package name here',
                flags: Titanium.Android.FLAG_ACTIVITY_CLEAR_TOP | Titanium.Android.FLAG_ACTIVITY_SINGLE_TOP 
            });

            var alarmTimePendingIntent = Ti.Android.createPendingIntent({
                activity: Ti.Android.currentActivity,
                intent: alarmTimeIntent,
                type: Ti.Android.PENDING_INTENT_FOR_ACTIVITY,
                flags: Titanium.Android.FLAG_CANCEL_CURRENT
            });

            var alarmTimeNotification = Titanium.Android.createNotification({
                contentIntent: alarmTimePendingIntent,
                contentTitle: 'Content Title Here',
                tickerText: 'Ticker text here',
                defaults:Titanium.Android.NotificationManager.DEFAULT_SOUND,
                when: new Date()
            });

            Ti.Android.NotificationManager.notify(1, alarmTimeNotification);
share|improve this answer
whether it will work even if I closed my application?, and what should I use here (packageName: 'package name here') – Karthi Dec 7 '11 at 4:36
actually i written com.*.* my app id, but i don't think it will effect. It will work without that too i think but still just write you app id or anything related to com.*.* .... And yah it will work but you have use background service. Because in android it will not fire automatically like iphone do. you have to fire manually. – The Zero Dec 7 '11 at 5:06
Last line .notify will fire notification. – The Zero Dec 7 '11 at 5:07
Thanks ..I will check this ...Do you have any idea how to run background service in Titanium for Android Platform? – Karthi Dec 7 '11 at 5:17
you have to create one service file in resources/android/ folder. And make and entry in to tiapp.xml than you can call that service from your app. – The Zero Dec 7 '11 at 5:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.