Kuv*_*uva 4 android android-8.0-oreo android-autofill-manager
我正在尝试对EditText除登录屏幕以外的所有内容禁用自动填充功能。还没有成功。longPress开启后,总会有“自动填充”选项editText。IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS rootView或IMPORTANT_FOR_AUTOFILL_NO完全无效。
有任何想法吗?谢谢。
ali*_*636 13
你可以将“不”传递给importantForAutofill例如
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:importantForAutofill="no" />
Run Code Online (Sandbox Code Playgroud)