Notification.setLatestEventInfo() 过时了用什么代替
在Notification 中已经没有有这个函数了怎么办
在Notification 中已经没有有这个函数了怎么办
2015-11-17
//看到很多人浏览这个问题 上网查了一下 下面给这段代码我这里可以 可以试一下
NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
//API level 11
Notification.Builder builder = new Notification.Builder(context);
builder.setContentTitle("Bmob Test");
builder.setContentText(message);
builder.setSmallIcon(R.drawable.ic_launcher);
Notification notification = builder.getNotification();
manager.notify(R.drawable.ic_launcher, notification);
// NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
// Notification notification =new Notification(R.drawable.ic_launcher,"TestBmob",System.currentTimeMillis());
// notification.setLatestEventInfo(context,"Bmob Test",message,null);
// manager.notify(R.drawable.ic_launcher,notification);
举报