首页 > 系统 > Android > 正文

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

2019-12-12 05:28:49
字体:
来源:转载
供稿:网友

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

以上所述是小编给大家介绍的Android中new Notification创建实例的最佳方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表