gpt4 book ai didi

android - onHandleIntent() 中的 Intent 怎么可能为空?

转载 作者:IT老高 更新时间:2023-10-28 23:15:43 27 4
gpt4 key购买 nike

我的 android 应用程序崩溃了,这是 logcat:-

java.lang.NullPointerException
at com.google.android.gcm.GCMBaseIntentService.onHandleIntent(GCMBaseIntentService.java:194)
at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.os.HandlerThread.run(HandlerThread.java:60)

我查看了 android gcm r3 源代码,发现onHandleIntent() 中的参数 Intent 为空。

这甚至可能吗?如何解决?

(我知道 Service.onStartCopmmand 返回 START_STICKY 可以看到 null Intent 但 IntentService.onStartCommand 不使用 START_STICKY。)

最佳答案

我认为应用程序在安装期间仅在某些设备中崩溃。这是因为在安装过程中,GCM 服务还从其他 Google 来源接收了一些 Intent,而您的广播接收器还没有准备好处理这种类型的 Intent

如果你只是想通过推送通知接收你想从服务器中提取的 GCM Intent,那么只需在你的句柄 Intent 调用中使用它。

protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
//String msg = intent.getStringExtra("message");
String from=extras.getString("from");
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
String messageType = gcm.getMessageType(intent);

if (!extras.isEmpty()) {

if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
sendErrorNotification("Send error: " + extras.toString());
} else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
sendErrorNotification("Deleted messages on server: " + extras.toString());
// If it's a regular GCM message, do some work.
} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
// This loop represents the service doing some work.
for (int i = 0; i < 5; i++) {
Log.i(TAG, "Working... " + (i + 1) + "/5 @ " + SystemClock.elapsedRealtime());
try {
Thread.sleep(500);
} catch (InterruptedException e) {
}
}
Log.i(TAG, "Completed work @ " + SystemClock.elapsedRealtime());
// Post notification of received message.
// sendNotification("Received: " + extras.toString());
/*********ERROR IN SOME DEVICES*****************/

if(from.equals("google.com/iid"))
{
//related to google ... DO NOT PERFORM ANY ACTION
}
else {
//HANDLE THE RECEIVED NOTIFICATION
String msg = intent.getStringExtra("message");
sendNotification(msg);
Log.i(TAG, "Received: " + extras.toString());
}
/**************************/
}
}
GcmBroadcastReceiver.completeWakefulIntent(intent);
}

关于android - onHandleIntent() 中的 Intent 怎么可能为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15808793/

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