4

我正在尝试创建一个具有高优先级的通知(一个聊天应用程序),但我的客户要求它不会有“抬头”视图。

我尝试创建一个空布局以将 aRemoteViews设置为Notification.headsUpContentView但仍然没有。

这是我尝试过的:

    Intent target = new Intent(this, PushConsumedBroadcastReceiver.class);
    target.putExtra(PushConsumedBroadcastReceiver.PUSH_TYPE, PushConsumedBroadcastReceiver.PUSH_TYPE_REMINDER);

    PendingIntent pending = PendingIntent.getBroadcast(this, Constants.REQUEST_CODE_BASE, target, PendingIntent.FLAG_UPDATE_CURRENT);
    Notification notification = new Notification.Builder(this).setContentIntent(pending)
    .setContentTitle(item.getNotificationText())
    .setStyle(new BigTextStyle().bigText(item.getNotificationText()).setSummaryText("thepoosh looks good"))
    .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
    .setSmallIcon(R.drawable.g_icon_white)
    .setPriority(Notification.PRIORITY_MAX)
    .setTicker(item.getNotificationText())
    .build();

    if(VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        notification.headsUpContentView = new RemoteViews(getPackageName(), R.layout.empty_heads_up);
    }
    notification.sound = null;
    notification.ledARGB = 0;
    notification.vibrate = new long[0];

    NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    manager.notify(CODE_ONE_DAY_REMINDER, notification);

empty_heads_up.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" />
4

2 回答 2

1

显示抬头通知是高优先级通知定义的一部分:

如果通知的优先级标记为高、最大或全屏,则会收到提示通知。

如果您不想要提示通知,则您不想要高优先级通知。

请注意,您的用户可以选择禁用抬头通知或降低通知的优先级,但这是仅适用于用户的选项。

于 2015-08-10T16:05:21.727 回答
1

如果您坚持使用PRIORITY_MAX,您可以使用以下从 API 21 开始的代码禁用 Heads-Up 通知:

notification.headsUpContentView = new RemoteViews(Parcel.obtain());
于 2015-08-10T16:18:49.063 回答