Android notifications - RemoteServiceException

I get a RemoteServiceException. This happens if I just call the onResume () action:

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)); 

This only happens if a notification is called.

 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) 
+4
source share
1 answer

add this line to your code

 notif.setSmallIcon(R.drawable.alarm); 

make sure that the alarm icon must be in a folder with the ability to move

+6
source

All Articles