我的Palette -> Text有问题
当我想设置一些 View 时,我收到一条消息问题"Missing autofillHints attribute"有什么建议?

最佳答案

也许您正在使用EditText。 apit_a在API 26及更高版本中用于填充空的autofillHints,它实际上是建议应在其中放置哪种类型的内容。

只需添加:

android:autofillHints="username" // the type of content you want

给您的EditText和警告将消失。



阅读: EditText

而这个: https://medium.com/@bherbst/getting-androids-autofill-to-work-for-you-21435debea1

编辑:

但是,您可以设置:
android:importantForAutofill="no"

对组件来说,填充并消除错误并不重要。

10-08 17:40