gpt4 book ai didi

android wear : only picture, 无标题第二页

转载 作者:行者123 更新时间:2023-11-29 17:48:14 24 4
gpt4 key购买 nike

我为 android wear 创建了第二个页面。该页面应仅包含位图。

使用下面的代码,位图显示得很好,但我也得到了标题行。即使标题为空。

// Create second page notification
Notification secondPageNotification =
new NotificationCompat.Builder(activity)
.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(map))
.build();

如何删除标题字段/行?

最佳答案

你需要使用:

.extend(new WearableExtender().setHintShowBackgroundOnly(true));

这将隐藏一张卡片,只留下一个背景:)
更多信息:link .

您的最终代码应如下所示:

Notification secondPageNotification =
new NotificationCompat.Builder(activity)
.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(map))
.extend(new WearableExtender().setHintShowBackgroundOnly(true));
.build();

关于android wear : only picture, 无标题第二页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24935426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com