当用户在应用上执行某些操作时,我需要显示一条通知。
我可以在版本6、7、8和9上运行它,其中一些是三星。但是,Galaxy Note5是唯一无法运行的设备。
这是代码:
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
String channelId = "channel test 1";
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.ic_check_circle_black_24dp)
.setContentTitle("My App")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// Since android Oreo notification channel is needed.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId,
"Channel human readable title",
NotificationManager.IMPORTANCE_DEFAULT);
notificationManager.createNotificationChannel(channel);
}
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
我根据发现的另一个主题尝试了该代码的许多变体。
该代码未显示任何错误或警告。
这可能是设备问题吗?
编辑1:
我从Firabase quickstart应用中获得了以下代码:
答案 0 :(得分:0)
我终于解决了这个问题。
在“通知”设置中,三星也有一个我必须启用的高级设置。其他设备只有一个位置可以启用/禁用应用程序通知。