黑马程序员技术交流社区

标题: 自定义notifiaction发布失败的问题 [打印本页]

作者: linilq    时间: 2014-3-31 10:07
标题: 自定义notifiaction发布失败的问题
显示自定义的notification时,报android.app.RemoteServiceException: Bad notification posted from package...

自定义的notification中都是常规控件,imagebutton imageview  textview  布局是linearlayout;所以排除
控件导致错误的可能;只是在设定notification的时候不知道还有些什么关键问题要考虑
请大家帮指导一下,不胜感激。。
关键代码如下:
  1.         private void showNotification() {
  2.                
  3.                 Intent intent =new Intent(this,MainActivity.class);
  4.                 intent.setAction(Intent.ACTION_MAIN);
  5.         intent.addCategory(Intent.CATEGORY_LAUNCHER);
  6.                 //设置图标、滚动文本、时间戳、点击跳转
  7.                 PendingIntent pIntent = PendingIntent.getActivity(this, 0,
  8.                                 intent,PendingIntent.FLAG_CANCEL_CURRENT);
  9.                 RemoteViews contentView = new RemoteViews(this.getPackageName(),
  10.                                                                         R.layout.extension);
  11.                
  12.                 Log.v(TAG, "RemoteView is ready");
  13.                
  14.                 Notification notification = new Notification.Builder(this)
  15.                                                                         .setOngoing(true)
  16.                                                                         .setSmallIcon(R.drawable.ic_launcher)
  17.                                                                         .setTicker("Enjoy your life!")
  18.                                                                         .setContent(contentView)
  19.                                                                         .setContentIntent(pIntent)
  20.                                                                         .build();
  21.                 Log.v(TAG, "notification is ready");
  22.                 //显示提示
  23.                 mNM.notify(NOTIFICATION,notification);
  24.                
  25.        
  26.         }
复制代码




作者: linilq    时间: 2014-4-4 08:57
自己先把目前对这个问题的了解说一下吧:
给notification设计自定义的remoteview时,是有高度限制的;楼主的问题发生在想要定义一个扩展的notification,但是直接将这个大的remoteview布局直接加入时导致无法完全显示,故而报bad notification;
但是更多的问题也随之而来,决定再开一个贴进行讨论,请各位多指教吧!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2