gpt4 book ai didi

android - 解析推送通知 - 关闭应用程序时不会出现警告对话框

转载 作者:行者123 更新时间:2023-11-29 17:48:44 26 4
gpt4 key购买 nike

我是 Parse 的新手,并且制作了一个接收推送通知的应用程序。我有一个要发送到包含 URL 的应用程序的 json 有效负载。当设备收到推送通知时,会出现一个带有“取消”和“确定”按钮的警告对话框。如果用户按下“确定”,则加载网页。

当应用程序在设备上打开时,这工作得很好,但当应用程序未在设备上打开时失败。当应用程序在后台时,通知仍然出现,用户可以点击它打开应用程序,但屏幕上不会出现对话框。如果应用程序完全关闭,我会看到一个弹出窗口,告诉我应用程序已崩溃,但随后应用程序将加载,但屏幕上不会显示任何对话框。这是我的接收器的样子:

public class MyCustomReceiver extends BroadcastReceiver {
private static final String TAG = "MyCustomReceiver";
public static final String ACTION = "custom_action_name";
@Override
public void onReceive(Context context, Intent intent) {
try {
...
...
Iterator itr = json.keys();
while (itr.hasNext()) {
String key = (String) itr.next();
...
if (key.equals("targetUrl")){
MainActivity.showdialog(json.getString(key));
}
...
}
String message = json.getString("alert");
} catch (JSONException e) {
Log.d(TAG, "JSONException: " + e.getMessage());
}
}
}

所以当迭代器点击 targetUrl 键时,showdialog() 方法被调用并传入 url。

这是我的 showdialog 方法,在我的 MainActivity 类中找到:

public static void showdialog(final String url){
AlertDialog.Builder alert = new AlertDialog.Builder(context);
alert.setTitle("Title");
alert.setMessage("Message");
alert.setPositiveButton("OK",new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
context.startActivity(intent);
}
});
alert.setNegativeButton("Cancel",new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {

}
});
alert.show();
}

同样 - 当应用程序打开时这工作正常,但如果应用程序关闭则失败。如何让用户通过通知打开应用并看到此对话框?

如果应用程序关闭并且我尝试通过推送通知打开,这是错误堆栈:

FATAL EXCEPTION: main
Process: ././., PID: 30566
java.lang.RuntimeException: Unable to start receiver ././.MyCustomReceiver: java.lang.NullPointerException
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2856)
at android.app.ActivityThread.access$1700(ActivityThread.java:156)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1440)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:157)
at android.app.ActivityThread.main(ActivityThread.java:5872)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:674)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.app.AlertDialog.resolveDialogTheme(AlertDialog.java:143)
at android.app.AlertDialog$Builder.<init>(AlertDialog.java:360)
at ././.MainActivity.showdialog(MainActivity.java:140)
at ././.MyCustomReceiver.onReceive(MyCustomReceiver.java:34)
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2845)

最佳答案

我对 Parse Notifications 也有同样的问题。这是我如何让我的工作。

  1. 找出当前 Activity ,请参阅 https://stackoverflow.com/a/13994622/2383911
  2. 如果当前 Activity == null,则表示应用已后台运行
  3. 打开上一个 Activity
  4. 等待 2 秒(为了安全起见)将 Intent 传递回 onReceive 函数。
  5. 从那里您的 alertdialog 功能应该可以工作。

    public void onReceive(final Context 上下文, final Intent Intent ) {

    currentActivity = ((启动) context.getApplicationContext()).getCurrentActivity();

        if (currentActivity == null) {
    Intent notificationIntent = new Intent(context, Login.class);
    notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
    notificationIntent.setAction(Intent.ACTION_MAIN);
    final Handler h = new Handler();
    final int delay = 1000; //milliseconds

    h.postDelayed(new Runnable() {
    public void run() {
    onReceive(context, intent);

    }
    }, delay);
    }

编辑:在进一步测试这个真正的 hacky 解决方案之后 - 我发现如果您有多个待处理的通知,此方法将为每个待处理的通知创建警报对话框并将它们放在彼此之上......如果有人能弄清楚如何只显示所选的通知,我将永远感激不尽!更多信息在这里- https://stackoverflow.com/questions/26020523/displaying-a-parse-com-push-notification-with-alert-and-title-keys-as-an-ale

关于android - 解析推送通知 - 关闭应用程序时不会出现警告对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24557968/

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