黑马程序员技术交流社区
标题:
自定义notifiaction发布失败的问题
[打印本页]
作者:
linilq
时间:
2014-3-31 10:07
标题:
自定义notifiaction发布失败的问题
显示自定义的notification时,报android.app.RemoteServiceException: Bad notification posted from package...
自定义的notification中都是常规控件,imagebutton imageview textview 布局是linearlayout;所以排除
控件导致错误的可能;只是在设定notification的时候不知道还有些什么关键问题要考虑
请大家帮指导一下,不胜感激。。
关键代码如下:
private void showNotification() {
Intent intent =new Intent(this,MainActivity.class);
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
//设置图标、滚动文本、时间戳、点击跳转
PendingIntent pIntent = PendingIntent.getActivity(this, 0,
intent,PendingIntent.FLAG_CANCEL_CURRENT);
RemoteViews contentView = new RemoteViews(this.getPackageName(),
R.layout.extension);
Log.v(TAG, "RemoteView is ready");
Notification notification = new Notification.Builder(this)
.setOngoing(true)
.setSmallIcon(R.drawable.ic_launcher)
.setTicker("Enjoy your life!")
.setContent(contentView)
.setContentIntent(pIntent)
.build();
Log.v(TAG, "notification is ready");
//显示提示
mNM.notify(NOTIFICATION,notification);
}
复制代码
作者:
linilq
时间:
2014-4-4 08:57
自己先把目前对这个问题的了解说一下吧:
给notification设计自定义的remoteview时,是有高度限制的;楼主的问题发生在想要定义一个扩展的notification,但是直接将这个大的remoteview布局直接加入时导致无法完全显示,故而报bad notification;
但是更多的问题也随之而来,决定再开一个贴进行讨论,请各位多指教吧!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2