当前位置:主页 > 移动开发 > Android代码 >

Android中new Notification创建实例的最佳方法

时间:2020-10-15 09:31:49 | 栏目:Android代码 | 点击:

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

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();

您可能感兴趣的文章:

相关文章