未显示Android抬头通知

问题描述 投票:7回答:5

我正在尝试使平视通知工作。通知已创建,但未显示在应用程序顶部。这是负责构建通知的代码:

Notification notification = new NotificationCompat.Builder(context)
                                .setSmallIcon(android.R.drawable.arrow_up_float)
                                .setContentTitle("Check running time - click!")
                                .setContentText(String.valueOf(elapsedTime))
                                .setContentIntent(pendingIntent)
                                .setDefaults(Notification.DEFAULT_ALL)
                                .setPriority(Notification.PRIORITY_HIGH)
                                .setVibrate(new long[0])
                                .build();

我试图运行该应用程序的设备是API21。我看到了很多线程,但是没有给出的解决方案适合我。

android notifications
5个回答
10
投票

您需要做两件事:

  1. 请确保您的通知已正确配置。参见:https://developer.android.com/guide/topics/ui/notifiers/notifications#Heads-up

  2. 并确保手机配置正确(我认为这是大多数卡住的地方)。

步骤1.配置通知。

首先,像这样注册您的通知频道

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        String name = getString(R.string.channel_name);
        String description = getString(R.string.channel_description);
        int importance = NotificationManager.IMPORTANCE_HIGH; //Important for heads-up notification
        NotificationChannel channel = new NotificationChannel("1", name, importance);
        channel.setDescription(description);
        channel.setShowBadge(true);
        channel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
        NotificationManager notificationManager = getSystemService(NotificationManager.class);
        notificationManager.createNotificationChannel(channel);
    }

然后创建一个通知,如下所示:

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this, "1")
        .setSmallIcon(R.drawable.notification_icon)
        .setContentTitle(textTitle)
        .setContentText(textContent)
        .setDefaults(DEFAULT_SOUND | DEFAULT_VIBRATE) //Important for heads-up notification
        .setPriority(Notification.PRIORITY_MAX); //Important for heads-up notification

最后,像平常一样发送通知,例如:

Notification buildNotification = mBuilder.build();
NotificationManager mNotifyMgr = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(001, buildNotification);

步骤2.配置电话。

我注意到我必须在手机上启用一些其他设置(小米Note 3:]

以下是一些访问菜单的方法:

  1. 长按通知,在通知栏中。
  2. 转到:设置>已安装的应用程序>选择您的应用程序>通知
  3. 在上一步的基础上,您可以通过使用以下目的将用户发送到已安装的应用程序菜单来部分帮助用户:

startActivity(new Intent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);] >>

最后,当您到达此菜单时,启用名为“浮动通知”之类的设置(此设置的名称因设备而异。


0
投票

尝试执行此操作:


0
投票

您的代码几乎可以了。我使用的是DEFAULT_VIBRATE而不是DEFAULT_ALL:


0
投票

我遇到了同样的问题。解决方案是简单地正确设置振动builder.setVibration(NotificationCompat.DEFAULT_VIBRATE)


-1
投票

仅使用类似

© www.soinside.com 2019 - 2024. All rights reserved.