我的通知系统有问题,为什么不出现在某些类似现代设备的设备上?
Intent intent = new Intent(this, TestClass.class);
Notification n = new Notification.Builder(this)
.setContentTitle(getResources().getString(R.string.app_name))
.setContentText(getResources().getString(R.string.notification_content_text))
.setSmallIcon(R.drawable.notification_small_icon)
.setContentIntent(PendingIntent.getActivity(this, 0, intent, 0))
.setAutoCancel(true)
.setOngoing(true)
.build();
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, n);
我已经通过其他主题尝试过此问题,但没有用,希望您能为我提供帮助。