我可以从“Parse”(第三方)发送推送通知。但是,当用户收到该消息时,我希望以某个字符串接收该消息并将其显示在某些Activity中。我使用以下默认代码“Parse”在点击通知后进入某些活动
PushService.setDefaultPushCallback(this, PushNoti.class);//change the class where u want to go after clicking on noti
ParseInstallation.getCurrentInstallation().saveInBackground();
通过使用它我也可以参加那个活动,但是任何人都可以帮助我在一些字符串中显示该文本并显示它吗?或者,是否有任何默认方法在点击通知后被调用? (如在iOS中)
请不要将这篇文章视为Android - Receive Push notification and display it - not quite understanding的副本,因为我没有使用钛。
答案 0 :(得分:3)
在启动的Activity中访问通知的所有json数据的方法是:
Intent intent = getIntent();
Bundle extras = intent.getExtras();
String jsonData = extras.getString( "com.parse.Data" );
Log.d("MyApp",jsonData);