app*_*tup 7 android firebase firebase-cloud-messaging
我看到1000条与通知相关的崩溃报告,没有可行的方法来调试或检查Firebase云消息传递中的通知的应用代码
Fatal Exception: android.app.RemoteServiceException: Bad notification posted from package com.appbootup.ipo.news: Couldn't expand RemoteViews for: StatusBarNotification(pkg=com.appbootup.ipo.news user=UserHandle{0} id=2 tag=IPO-SME score=10: Notification(pri=1 contentView=com.appbootup.ipo.news/0x1090064 vibrate=null sound=null defaults=0x0 flags=0x10 kind=[null] 2 actions))
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1509)
at android.os.Handler.dispatchMessage(Handler.java:110)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:5323)
at java.lang.reflect.Method.invokeNative(Method.java)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:828)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:644)
at dalvik.system.NativeStart.main(NativeStart.java)
Run Code Online (Sandbox Code Playgroud)
由于我没有自定义远程视图代码,因此不涉及RemoteView.我正在使用默认通知,没有与RemoteViews相关的代码notificationView = new RemoteViews()
final Notification.Builder builder = new Notification.Builder(context)
.setContentTitle(mNotificationTitle)
.setContentText(mNotificationText)
.setStyle(new Notification.BigTextStyle().bigText(boldmNotificationLongText))
.setLargeIcon(largeIcon)
.setSmallIcon(mNotificationSmallIcon)
.setPriority(mPriority)
.setTicker(mNotificationTicker)
.setContentIntent(pendingIntentView)
.setAutoCancel(true)
.addAction(R.drawable.ic_menu_share, SHARE_ACTION, pendingIntentShare)
.addAction(R.drawable.ic_arrow_forward_black_24dp, VIEW_ACTION, pendingIntentView);
Run Code Online (Sandbox Code Playgroud)
更多参考资料 -
只有Kitkat设备大量投入使用 - Android操作系统版本:4.4.4,4.4.2,4.2.2,4.0.4
通过更改Notification使用的drawable来修复。
.addAction(R.drawable.ic_forward_black_24dp, VIEW_ACTION, pendingIntentView);
Run Code Online (Sandbox Code Playgroud)
R.drawable.ic_forward_black_24dp不再使用 xml 文件(矢量资源),而是使用 png 文件(图像资源)。
| 归档时间: |
|
| 查看次数: |
926 次 |
| 最近记录: |