java.lang.IllegalArgumentException: contentIntent required

[BUG记录]java.lang.IllegalArgumentException: contentIntent required

今天遇到一个异常,在notificationManager.notify的时候发生java.lang.IllegalArgumentException: contentIntent required,原因是我个没有设置contentIntent。

以前一直在4.0的机子上跑是没有问题的,在2.3、2.2上就会出现异常。

所以还是要设置contentIntent,只是Intents设置不同的动作,contentIntent不可以设为空!!!

                // 指定内容意图
               Intent intent = new Intent(this, XXXXX.class); 改为

       Intent intent = new Intent();


               PendingIntent contentIntent = PendingIntent.getActivity(mContext, 0, intent,
                               PendingIntent.FLAG_UPDATE_CURRENT);
               mNotification.contentIntent = contentIntent;

你可能感兴趣的:(required)