4

我可以从“Parse”(第 3 方)发送推送通知。但是,当用户收到该消息时,我想在某个字符串中接收该消息并将其显示在某个 Activity 中。单击通知后,我使用以下默认代码“解析”进入某些活动

PushService.setDefaultPushCallback(this, PushNoti.class);//change the class where u want to go after clicking on noti
ParseInstallation.getCurrentInstallation().saveInBackground();

通过使用它,我也可以进行该活动,但是任何人都可以帮助我在某个字符串中获取该文本并显示它吗?或者,是否有任何默认方法在单击通知后被调用?(如在 iOS 中)

请不要将这篇文章视为Android 的重复 - 接收推送通知并显示它 - 不太理解,因为我没有使用钛。

4

1 回答 1

4

在已启动的 Activity 中获取通知的所有 json 数据的方法是:

Intent intent = getIntent(); 
Bundle extras = intent.getExtras(); 
String jsonData = extras.getString( "com.parse.Data" );
Log.d("MyApp",jsonData);
于 2013-10-06T19:43:15.467 回答