不在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());
我做错了什么?!