gpt4 book ai didi

android - 带有 URL 的 Parse.com Android 推送通知

转载 作者:行者123 更新时间:2023-11-29 21:00:01 26 4
gpt4 key购买 nike

我正在尝试通过推送通知将解析集成到我的应用程序中,并让通知显示自定义文本并在我向其发送 url 时打开设备的浏览器。

解析集成很好(这是最简单的部分),但我遇到的问题是为集成编写什么代码来处理解析接口(interface)发送的 json 代码,并让应用程序将其转换为我需要完成的操作。

我知道我必须更新 list 文件和主要 Activity 类才能完成此操作,但我被卡住了。

最佳答案

将 list 添加到

<receiver android:name="com.sample.app.android.recevier.PushNotificationRecevier" >
<intent-filter>
<action android:name="com.sample.app.android.SIMPLE_NOTIFICATION" />
</intent-filter>
</receiver>

创建一个接收器类

import org.json.JSONException;
import org.json.JSONObject;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class PushNotificationRecevier extends BroadcastReceiver{
String SimpleNotification="com.sample.app.android.SIMPLE_NOTIFICATION";
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equalsIgnoreCase(SimpleNotification)){

// Your Stuff
JSONObject jsonObject=new JSONObject(intent.getExtras().getString("com.parse.Data"));


}
}
}

关于android - 带有 URL 的 Parse.com Android 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26403826/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com