Android 4.4(API 19)未显示本地通知

时间:2018-01-29 05:53:20

标签: android notifications local

不在android kitkat上显示本地通知(API 19)。在较新的版本或甚至在API 16上它都可以正常工作

NotificationCompat.Builder nt = new NotificationCompat.Builder(this);
nt.setContentTitle(getString(R.string.app_name))
        .setContentText(tr)
        .setSmallIcon(getApplicationInfo().icon)
        .setContentIntent(pendingIntent)
        .setWhen(System.currentTimeMillis())
        .setAutoCancel(true);

nt.getNotification().flags |= Notification.FLAG_AUTO_CANCEL;

nm.notify(1,nt.build());

我做错了什么?!

0 个答案:

没有答案