gpt4 book ai didi

android - RemoteInput 上的 AllowedDataType 是什么?

转载 作者:行者123 更新时间:2023-12-04 11:19:55 24 4
gpt4 key购买 nike

有一个名为 setAllowDataType 的新函数在 RemoteInput.Builder 在 API 26 中。这是做什么用的?我尝试了以下方法:

val remoteInput = RemoteInput.Builder(KEY_TEXT_REPLY)
.setLabel("Image")
.setAllowFreeFormInput(false)
.setChoices(null)
.setAllowDataType("image/*", true)
.setAllowDataType("image/png", true)
.setAllowDataType("image/jpg", true)
.setAllowDataType("image/gif", true)
.build()

应该设置 isDataOnly trueRemoteInput ,但通知在手机上显示如下。点击 Image按钮什么都不做。这个是来做什么的?我找不到有关此功能的任何文档、发行说明或教程。



更新

实际发布时,通知中似乎缺少仅数据类型。在添加 Actions 时查看构建器代码对于通知,它使用级别 24 完全去除数据类型: https://android.googlesource.com/platform/frameworks/support/+/oreo-release/compat/api26/android/support/v4/app/NotificationCompatApi26.java#108

原来的问题仍然存在。

最佳答案

来自 docs它说:

Specifies whether the user can provide arbitrary values. This allows an input to accept non-textual values. Examples of usage are an input that wants audio or an image.



所以,我相信如果我没看错的话,函数 setAllowDataType是在输入字段中添加允许的类型。因此,如果用户想要添加 gif、img 等……他们可以。默认情况下,我不相信用户可以添加这些类型的项目。

关于android - RemoteInput 上的 AllowedDataType 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47722165/

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