2013-09-23 65 views

回答

3

您可以在showAlert PARAM使用moduleNotificationsRegister()false避免默認行爲。

然後,得到通知的消息,你只需要添加這對您的發射活動的onCreate()

String message = null; 

if(getIntent()!=null && getIntent().getExtras()!=null){ 

    message = (String)getIntent().getExtras().get(MCMNotificationModule.ANDROID_MESSAGE_KEY); 

} 
相關問題