我是Parse的新手,并制作了一个接收推送通知的应用。我有一个json有效负载,我发送到包含URL的应用程序。当设备收到推送通知时,会出现一个警告对话框,其中包含“取消”和“确定”按钮。如果用户按下“确定”,则加载网页。
当应用程序在设备上打开时,此功能完全正常,但在应用程序未在设备上打开时失败。通知仍然显示,用户可以单击它以在应用程序处于后台时打开该应用程序,但屏幕上不会显示任何对话框。如果应用程序完全关闭,那么我会看到弹出窗口告诉我应用程序已崩溃,但随后应用程序将加载,但屏幕上将不会显示任何对话框。这是我的接收器的样子:
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。
这是我在我的MainActivity类中找到的showdialog方法:
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)
答案 0 :(得分:3)
我遇到了与Parse Notifications相同的问题。这就是我让我的工作方式。
从那里你的alertdialog功能应该可以工作。
public void onReceive(最终的Context上下文,最终的Intent intent){
currentActivity =((Launch)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);
}