android notification - RemoteServiceException



我正在得到RemoteServiceException。如果我只是在活动的 onResume() 中调用以下内容,就会发生这种情况:

 NotificationManager mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
        NotificationCompat.Builder notif = new NotificationCompat.Builder(mContext);
        notif.setTicker("Notification ticker")
             .setContentTitle("Vinceri")
             .setContentText("Ha recibido una oferta de trabajo")
             .setAutoCancel(true);
        //create notification from builder
        Notification notification = notif.build();
        mNotificationManager.notify(0, mBuilder.buildNotification(content));

仅当调用通知时,才会发生这种情况。

android.app.RemoteServiceException: Bad notification posted from package com.java: Couldn't create icon: StatusBarIcon(pkg=com.java id=0x1 level=0 visible=true num=0 )
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1264)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loop(Looper.java:137)
        at android.app.ActivityThread.main(ActivityThread.java:4493)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:788)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
        at dalvik.system.NativeStart.main(Native Method)

代码中添加此行

notif.setSmallIcon(R.drawable.alarm);

确保警报图标应位于可绘制文件夹上

相关内容

  • 没有找到相关文章

最新更新