以下是我如何显示通知:
Intent resultIntent = new Intent(this, MalwareListActivity.class);
PendingIntent pi = PendingIntent.getActivity(this, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Notification notification = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_white)
.setContentTitle("My notification")
.setContentText("Hello World!")
.setOngoing(true)
.setContentIntent(pi)
.build();
mNotificationManager.notify(NOTIFY_ID, notification);
它适用于Android 5.1,但不适用于v4.2.2。
在v4.2.2设备上(我使用OPPO R831K),通知会立即显示并隐藏。
我做错了吗?