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

答案

也许您正在使用EditTextautofillHints用于API 26及以上用于填充空EditTexts,它实际上建议应将哪种类型的内容放置在其中。

只需添加:

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

给你的EditText并且警告将会消失。

您可以使用新的android:autofillHints属性来告诉autofill what type of content you expect , 和android:importantForAutofill告诉autofill您希望(或不希望)填充哪些视图。

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

And this: https://developer.android.com/guide/topics/text/autofill-services


Edit:

但是您可以设置:

android:importantForAutofill="no"

告诉组件填充和消除错误并不重要。

来自: stackoverflow.com