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.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.