关于Android中new Notification_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 关于Android中new Notification

关于Android中new Notification

 2016/8/31 5:30:39  itoysk  程序员俱乐部  我要评论(0)
  • 摘要:目前Android已经不推荐使用下列方式创建Notification实例:1Notificationnotification=newNotification(R.drawable.ic_launcher,"Thisistickertext",System.currentTimeMillis());最好采用下列方式:Notificationnotification=newNotification.Builder(this).setContentTitle("Thisistitle")
  • 标签:android not

目前 Android 已经不推荐使用下列方式创建 Notification实例:

1 Notification notification = new Notification(R.drawable.ic_launcher,"This is ticker text",System.currentTimeMillis());

最好采用下列方式:

                Notification notification = new Notification.Builder(this)
                    .setContentTitle("This is title")
                    .setContentText("This is content")
                    .setSmallIcon(R.drawable.ic_launcher)
                        .setTicker("This is ticker")
                        .setContentIntent(pi)
                    .build();
   

 

发表评论
用户名: 匿名