android new notification Android中new Notification创建实例的最佳方法
itoysk 人气:0想了解Android中new Notification创建实例的最佳方法的相关内容吗,itoysk在本文为您仔细讲解android new notification的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:android,new,notification,下面大家一起来学习吧。
目前 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创建实例的最佳方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
加载全部内容