关于Android中new Notification
Posted it小开
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Android中new Notification相关的知识,希望对你有一定的参考价值。
目前 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();
以上是关于关于Android中new Notification的主要内容,如果未能解决你的问题,请参考以下文章
Android关于FLAG_ACTIVITY_NEW_TASK 和 taskAffinity
Android关于FLAG_ACTIVITY_NEW_TASK 和 taskAffinity