4

我正在努力让我的通知显示抬头或窥视,因为它也被称为。

它适用于库存 Android 和 Lineage OS API 21-26

需要做什么才能让它在 MIUI 8 中工作?

该应用程序允许所有通知权限。

这是我的通知代码示例:

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
    NotificationCompat.Builder notification = new NotificationCompat.Builder(context, "service_notifications")
        .setContentTitle(name)
        .setContentText("\uD83D\uDD14" + res.getText(R.string.imminent_arrival_text) + String.valueOf(Long.parseLong(eta) / 60) + res.getText(R.string.minutes_at_text) + simpleETA)
        .setSmallIcon(R.drawable.ic_stat_name)
        .setContentIntent(null)
        .addAction(R.drawable.ic_dialog_close_light, res.getText(R.string.stop_following_label), closePendingIntent)                                
        .setSound(Uri.parse("android.resource://" + context.getPackageName() + "/" + R.raw.quite_impressed))
        .setVibrate(new long[]{1000, 1000})                                    
        .setPriority(NotificationCompat.PRIORITY_MAX)                                    
        .setCategory(NotificationCompat.CATEGORY_MESSAGE);

    notificationManager.notify(
        Constants.NOTIFICATION_ID.FOREGROUND_SERVICE,
        notification.build());
}
4

1 回答 1

4

您可以通过两种方式做到这一点。

去:

  1. 设置

  2. 已安装的应用程序(迁移到您的应用程序)

  3. 选择您的应用并转到通知(打开优先级并打开浮动通知

或者,创建一个远程视图(您自己的res/layout 布局)并设置customHeadsUpNotification

 RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.notif_custom_view);

 notification_builder.createHeadsUpContentView(remoteViews);

完成这些更改后,不要忘记更改 notification_id。

于 2018-03-04T16:49:47.600 回答