gpt4 book ai didi

Android Wear - 通知 - setContentAction() 不工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:42 25 4
gpt4 key购买 nike

我正在创建一个从可穿戴设备触发的通知,并且只在可穿戴设备上触发,根本不在手机上触发。我希望它有两个操作按钮(尚无功能)和单击通知本身时的第三个操作。我正在尝试使用 setContentAction() 使最后一个操作成为单击通知时的操作,但它仍显示为单独的操作按钮(根据文档 here 它不应显示单独的按钮)。不过,那个不需要的按钮会触发所需的 Intent 。通知本身不响应点击。下面是创建通知的代码:

    Intent pictureIntent = new Intent(this, PictureActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 254, pictureIntent, PendingIntent.FLAG_ONE_SHOT);

NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.medicinepillmd)
.setContentTitle(dose[0])
.setContentText(dose[3])
.extend(new NotificationCompat.WearableExtender()
.setContentIcon(R.drawable.thumbnail)
.setBackground(BitmapFactory.decodeResource(getResources(), R.drawable.orangegirl))
.addAction(new NotificationCompat.Action.Builder(R.drawable.medicinepillmd, "Taken", null).build())
.addAction(new NotificationCompat.Action.Builder(R.drawable.thumbnail, "Skipped", null).build())
.addAction(new NotificationCompat.Action.Builder(0, null, pendingIntent).build())
.setContentAction(2));

有人知道为什么这可能没有按预期运行吗?任何意见表示赞赏。谢谢

最佳答案

原因:

setContentAction(int index) 允许您指定将“合并”到卡片中的操作。它确实从“操作页面”中删除了此操作,并且只会出现在您的主卡上。但是,问题的原因是您没有为Action 指定图标资源。没有图标,它不能合并到主卡。

解决方案:

您需要指定一些图标并将其添加到您的操作中:

.addAction(new NotificationCompat.Action.Builder(R.drawable.some_icon, null, pendingIntent).build())

如果你真的不想要任何图标,你可以使用带有空图标的“hack”:

empty_icon.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
</shape>


注意:setContentIntent(PendingIntent intent) 不会使您的卡片可点击。它只会创建并添加另一个带有标签的操作(最右边):“打开”。

关于Android Wear - 通知 - setContentAction() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25018086/

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