Android Oreo禁用EditText

时间:2017-12-12 13:05:37

标签: android android-8.0-oreo android-autofill-manager

我尝试禁用所有EditText的自动填充功能,但我的登录屏幕除外。并没有成功。总有" Autofill" longPress editText之后的选项。 rootView的IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS或视图的IMPORTANT_FOR_AUTOFILL_NO根本不起作用。

有什么想法吗?感谢。

2 个答案:

答案 0 :(得分:4)

也许你和我有同样的问题 我混淆了建议和自动填充 然后我将importantForAutofill设置为false并完成所有操作

答案 1 :(得分:2)

例如,您可以传递“ no”重要的AuroFill。

<TextView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:importantForAutofill="no" />