I am developing small android application in which I want to include google cloud messaging. In my application I am able to get regid from server. Also when my application is running I am able to receive the message from my server. Now my problem: When my application is running in background i.e.(user click on home button) At that time my application is able to receive message.But when I clicked on notification it is not able to resume my application. It opens my application but with blurred and inactive window. My callback function looks like :
var intent = Ti.Android.createIntent
(
{
action:Ti.Android.ACTION_MAIN,
//flags:Ti.Android.FLAG_ACTIVITY_NEW_TASK | Ti.Android.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED,
flags : Ti.Android.FLAG_ACTIVITY_CLEAR_TOP | Ti.Android.FLAG_ACTIVITY_SINGLE_TOP,
packageName:'com.example.demotest',
className:'com.example.demotest.DemotestActivity'
}
);
//intent.addCategory(Ti.Android.CATEGORY_LAUNCHER);
var pending = Ti.Android.createPendingIntent
(
{
activity:Ti.Android.currentActivity,
intent:intent,
//flags : Ti.Android.FLAG_UPDATE_CURRENT,
type:Ti.Android.PENDING_INTENT_FOR_ACTIVITY
}
);
var notification = Ti.Android.createNotification
(
{
contentIntent:pending,
contentTitle:'New Message',
contentText:e.data.message,
icon : Ti.App.Android.R.drawable.appicon,
tickerText:'New Message'
}
);
Ti.Android.NotificationManager.notify(1, notification);
I used this module for implementing GCM for android. I also read this question which more relevant to my question.... any solution.. Need Help. Thank you.