您的位置:首页 > 编程语言 > Java开发

java: 找不到符号 符号: 方法 setLatestEventInfoentInfo

2016-06-28 14:31 1136 查看
Error:(38,25)错误:找不到符号
符号:方法setLatestEventInfo(MyService,String,String,PendingIntent)
位置:类型为Notification的变量notification

解决:
如果编译的SDK版本在API23以上,就会出现这个问题,因为setLatestEventInfo方法在api23中被删掉了

在api4以上的版本用notification可以用supportv4中的NotificationCompat.Builder。android文档中给了一个例子:

Notificationnoti=newNotification.Builder(mContext) .setContentTitle("Newmailfrom"+sender.toString()) .setContentText(subject) .setSmallIcon(R.drawable.new_mail) .setLargeIcon(aBitmap) .build();
把上面"Notification.Builder"替换成"NotificationCompat.Builder" alter+enter把supportv4中的相关的库import进来

importandroid.support.v4.app.NotificationCompat;
于是代码编程了这样

Notificationnotification;
if(Build.VERSION.SDK_INT<Build.VERSION_CODES.JELLY_BEAN){
notification=newNotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)//必须要先setSmallIcon,否则会显示默认的通知,不显示自定义通知
.setTicker("显示于屏幕顶端状态栏的文本")
.setContentTitle("thisicscontenttitle")
.setContentText("thisiscontenttext")
.setContentIntent(pendingIntent)
.build();
}else{
notification=newNotification.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)//必须要先setSmallIcon,否则会显示默认的通知,不显示自定义通知
.setTicker("显示于屏幕顶端状态栏的文本")
.setContentTitle("thisiscontenttitle")
.setContentText("thisiscontenttext")
.setContentIntent(pendingIntent)
.build();
}
startForeground(2,notification);
注意:!!!上面这段代码是前台服务的notification,通过startForeground让服务变成前台服务并显示通知。这时必须要setSmallIcon,否则会显示默认的通知,不显示自定义通知!!!如果是正常的用NotificationManager显示通知则无所谓顺序
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: