目前 Android 已經不推薦使用下列方式創建 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();