Android通知问题:通知取消没有搜索,没有错误消息

gkn4icbw  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(159)

我试图在我的应用程序中启动通知功能,问题是它没有显示或给出任何严重的错误来指导,如果他们在我的配置中有问题,我使用的是min sdk版本26,目标sdk 33,首先需要创建一个具有特定ID的通知通道,我的通知仍然没有在我的通知栏上弹出,并使用android 10手机来测试功能,下面是我在活动中启动的通知代码。

  1. CharSequence name = "My Upload";
  2. String description = "Upload confirmation to firestore";
  3. int importance = NotificationManager.IMPORTANCE_HIGH;
  4. NotificationChannel channel = new NotificationChannel(Constants.CHANNEL_UPLOAD_ID, name, importance);
  5. channel.setDescription(description);
  6. channel.enableVibration (true);
  7. // Register the channel with the system
  8. NotificationManager notificationManager = getSystemService(NotificationManager.class);
  9. notificationManager.createNotificationChannel(channel);

字符串
下面是我尝试在片段中发起的实际通知的代码,该片段来自我创建的通道的同一个Activity
public void onDestination(){

  1. NotificationCompat.Builder notification = new NotificationCompat.Builder(requireActivity (), Constants.CHANNEL_UPLOAD_ID)
  2. .setContentTitle("Testing")
  3. .setContentText("Its working")
  4. .setSmallIcon(R.drawable.ic_official_nichx_logo)
  5. .setPriority(NotificationCompat.PRIORITY_HIGH)
  6. .setAutoCancel(true);// Replace with your desired icon
  7. int notificationId = (int) System.currentTimeMillis();
  8. NotificationManagerCompat manager= NotificationManagerCompat.from (requireActivity ());
  9. if(Build.VERSION.SDK_INT>=33) {
  10. if (ActivityCompat.checkSelfPermission (requireActivity (), Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
  11. return;
  12. }
  13. }
  14. manager.notify (1,notification.build ());
  15. }


这是我从logcat得到的回应

  1. 2024-01-01 02:25:11.910 1081-3658/? E/NotificationService: No vibration for canceled notification : 0|com.adsilk.nichx|1|null|10171


好像还没显示就取消了,可能是什么问题?

gev0vcfq

gev0vcfq1#

如果我在你的最后一行manager.notify (1,notification.build ());之前添加以下代码,那么你的代码对我来说是有效的:

  1. if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
  2. return;
  3. }

字符串
如果没有这些行,我会得到一个错误消息,即权限测试丢失...

相关问题