从解析接收通知时如何打开不同的活动
Posted
技术标签:
【中文标题】从解析接收通知时如何打开不同的活动【英文标题】:how to open different activities when receiving notification from parse 【发布时间】:2015-07-05 12:59:38 【问题描述】:我的应用中有不同的类别,例如 新闻、天气、体育和 技术,我使用 parse 来接收通知,但我希望自定义通知一旦收到关于新闻的通知,它应该打开新闻活动,如果收到关于技术的通知,它应该打开技术活动。 我不想要自定义推送接收器,我尝试了很多例子,但我无法得到它。任何想法提前谢谢
【问题讨论】:
首先你必须设置你的应用程序接收通知并处理它们(在你的清单中,你必须添加那些处理从推送接收数据的意图):parse.com/apps/quickstart#parse_push/android/native/existing 其次,你可以获得从文档中了解如何做到这一点:parse.com/docs/android/… 如果您需要更多帮助,请告诉我。顺便说一句,我也想在我的应用程序中这样做,但我还没有这样做,如果你有足够的耐心,我会与你分享代码。 好的,我会试着告诉你 【参考方案1】:首先,您需要创建一个扩展 ParsePushBroadcastReceiver 的自定义类。 在那个类中你重写 onPushOpen 方法:
public class ParsePushCustomReceiver extends ParsePushBroadcastReceiver
protected static String pushTitle="";
@Override
protected void onPushOpen(Context context, Intent intent)
super.onPushOpen(context, intent);
pushTitle="";
try
Bundle extras = intent.getExtras();
if (extras != null)
String jsonData = extras.getString("com.parse.Data");
JSONObject json;
json = new JSONObject(jsonData);
pushTitle = json.getString("title");
String pushContent = json.getString("alert");
//intent to your activity
catch (JSONException e)
e.printStackTrace();
现在当你有了推送的标题和内容后,你就可以直接进入你想去的活动了……
您需要在 AndroidManifest.xml 中将自定义 ParsePushBroadcastReceiver 定义为接收者:
<!-- Parse PushService-->
<service android:name="com.parse.PushService" />
<receiver android:name="com.parse.ParseBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
<receiver
android:name="com.appname.appname.ParsePushCustomReceiver"
android:exported="false">
<intent-filter>
<action android:name="com.parse.push.intent.RECEIVE" />
<action android:name="com.parse.push.intent.DELETE" />
<action android:name="com.parse.push.intent.OPEN" />
</intent-filter>
</receiver>
<receiver
android:name="com.parse.GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.appname.appname" />
</intent-filter>
</receiver>
【讨论】:
以上是关于从解析接收通知时如何打开不同的活动的主要内容,如果未能解决你的问题,请参考以下文章