我试图在我的应用程序中启动通知功能,问题是它没有显示或给出任何严重的错误来指导,如果他们在我的配置中有问题,我使用的是min sdk版本26,目标sdk 33,首先需要创建一个具有特定ID的通知通道,我的通知仍然没有在我的通知栏上弹出,并使用android 10手机来测试功能,下面是我在活动中启动的通知代码。
CharSequence name = "My Upload";
String description = "Upload confirmation to firestore";
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel channel = new NotificationChannel(Constants.CHANNEL_UPLOAD_ID, name, importance);
channel.setDescription(description);
channel.enableVibration (true);
// Register the channel with the system
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
字符串
下面是我尝试在片段中发起的实际通知的代码,该片段来自我创建的通道的同一个Activity
public void onDestination(){
NotificationCompat.Builder notification = new NotificationCompat.Builder(requireActivity (), Constants.CHANNEL_UPLOAD_ID)
.setContentTitle("Testing")
.setContentText("Its working")
.setSmallIcon(R.drawable.ic_official_nichx_logo)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setAutoCancel(true);// Replace with your desired icon
int notificationId = (int) System.currentTimeMillis();
NotificationManagerCompat manager= NotificationManagerCompat.from (requireActivity ());
if(Build.VERSION.SDK_INT>=33) {
if (ActivityCompat.checkSelfPermission (requireActivity (), Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
return;
}
}
manager.notify (1,notification.build ());
}
型
这是我从logcat得到的回应
2024-01-01 02:25:11.910 1081-3658/? E/NotificationService: No vibration for canceled notification : 0|com.adsilk.nichx|1|null|10171
型
好像还没显示就取消了,可能是什么问题?
1条答案
按热度按时间gev0vcfq1#
如果我在你的最后一行
manager.notify (1,notification.build ());
之前添加以下代码,那么你的代码对我来说是有效的:字符串
如果没有这些行,我会得到一个错误消息,即权限测试丢失...