如何修复:android.app.RemoteServiceException:从包发布的错误通知 \*:无法创建图标:StatusBarIcon

新手上路,请多包涵

我在崩溃日志中看到以下异常:

 android.app.RemoteServiceException: Bad notification posted from package com.my.package: Couldn't create icon: StatusBarIcon(pkg=com.my.package user=0 id=0x7f02015d level=0 visible=true num=0 )
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:146)
    at android.app.ActivityThread.main(ActivityThread.java:5487)
    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:1283)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099)
    at dalvik.system.NativeStart.main(Native Method)

我正在使用以下方法从通过 AlarmManager 设置的 PendingIntent 中的 IntentService 发布我的通知。这里传入的所有值都来自 PendingIntent / IntentService 中的 bundle extras。

 /**
 * Notification
 *
 * @param c
 * @param intent
 * @param notificationId
 * @param title
 * @param message
 * @param largeIcon
 * @param smallIcon
 */
public static void showNotification(Context c, Intent intent,
        int notificationId, String title, String message, int largeIcon,
        int smallIcon) {
    PendingIntent detailsIntent = PendingIntent.getActivity(c,
            notificationId, intent, PendingIntent.FLAG_UPDATE_CURRENT);

    // BUILD
    NotificationCompat.Builder mNotifyBuilder = new NotificationCompat.Builder(
            c);
    // TITLE
    mNotifyBuilder.setContentTitle(title).setContentText(message);

    // ICONS
    mNotifyBuilder.setSmallIcon(smallIcon);
    if (Util.isAndroidOSAtLeast(Build.VERSION_CODES.HONEYCOMB)) {
        Bitmap large_icon_bmp = ((BitmapDrawable) c.getResources()
                .getDrawable(largeIcon)).getBitmap();
        mNotifyBuilder.setLargeIcon(large_icon_bmp);
    }

    mNotifyBuilder.setContentIntent(detailsIntent);
    mNotifyBuilder.setVibrate(new long[] { 500, 1500 });
    mNotifyBuilder.setTicker(message);
    mNotifyBuilder.setContentText(message);

    // NOTIFY
    NotificationManager nm = (NotificationManager) c
            .getSystemService(Context.NOTIFICATION_SERVICE);
    nm.notify(notificationId, mNotifyBuilder.build());
}

从我看到的其他答案来看 - 我看到的异常发生在 setSmallIcon() 没有被正确调用时。

我已经检查并仔细检查了传递的资源 ID 是否正确。

原文由 FishStix 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 782
2 个回答

发生的事情是,我在 PendingIntent 包中包含了对图标的整数引用,后来在发布到 NotificationManager 时引用了该整数。

在获取整数引用和未决意图之间,应用程序被更新并且所有可绘制引用都发生了变化。用于引用正确可绘制对象的整数现在引用了不正确的可绘制对象或根本没有引用(根本没有 - 导致此崩溃)

原文由 FishStix 发布,翻译遵循 CC BY-SA 3.0 许可协议

它与图像类型(矢量、png 等)无关,而是与您所指的文件夹有关。

对我来说,导致错误的原因是设备(牛轧糖)引用了 v26 文件夹中的图标。

解决方案:只需将相关图标也添加到另一个文件夹中,问题就会消失。

原文由 Prajwal Waingankar 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题