1. ホーム
  2. android

[解決済み] 「autofillHints属性の欠落

2022-09-15 01:33:39

質問

私は Palette -> Text

あるビューを設定しようとすると、メッセージの問題が発生します。 "Missing autofillHints attribute"

何か提案はありますか?

どのように解決するのですか?

おそらく、あなたが使用している EditText . autofillHints は API 26 以上で、空の EditText を埋めるために使われ、実際にはどのタイプのコンテンツがそこに置かれるべきかを提案しています。

を追加するだけです。

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

あなたの EditText を追加すると、警告が消えます。

これを行うには、新しい android:autofillHints 属性を使って autofill どのようなコンテンツを期待しているか そして android:importantForAutofill を伝えるために autofill には、どのビューを埋めたいか(あるいは を指定します。

読んでください。 https://medium.com/@bherbst/getting-androids-autofill-to-work-for-you-21435debea1

そしてこれ。 https://developer.android.com/guide/topics/text/autofill-services


編集します。

しかし、設定することができます。

android:importantForAutofill="no"

コンポーネントに、塗りつぶすことが重要でないことを伝え、エラーを取り除くために。