LoginSignup
1
0

More than 3 years have passed since last update.

AndroidのWebViewでAutofillを無効化する

Last updated at Posted at 2019-07-28

はじめに

自前のWebViewを実装するときにHTMLのフォーム入力でAutofill表示しないようにしたかったときのメモ。
image.png

検証環境
* Pixel3
* Android 9

解決策

WebViewの importantForAutofillIMPORTANT_FOR_AUTOFILL_NOを指定する(Android O / API 26以上の場合のみ)。

        webView.apply {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                importantForAutofill = View.IMPORTANT_FOR_AUTOFILL_NO
            }
        }

image.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0