Android O自动位置建议功能(又名自动填充),如何关闭

Ely*_*lye 2 android android-8.0-oreo

由于我们在Android O上安装了应用程序,因此引入了一项新功能,根据下图自动建议主页和工作位置.

在此输入图像描述

这个叫什么?有没有办法从显示它的编辑文本中禁用它?

Ely*_*lye 7

显然在Android-Oreo中,有这个新功能调用AUTOFILL

https://developer.android.com/guide/topics/text/autofill.html,其中By default, the view uses the IMPORTANT_FOR_AUTOFILL_AUTO mode, which lets Android use its heuristics to determine if the view is important for autofill

因此,对于不打算填充的字段,只需将以下内容添加到视图中即可.

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        setImportantForAutofill(IMPORTANT_FOR_AUTOFILL_NO);
    }
Run Code Online (Sandbox Code Playgroud)

更新:找到另一种禁用AUTOFILL的方法android:importantForAutofill="no"在XML中 使用https://developer.android.com/guide/topics/text/testautofill.html#trigger_autofill_in_your_app