我正在尝试为EditText
除我的登录屏幕之外的所有 ' 禁用自动填充。而且还没有成功。longPress
on之后总是有“自动填充”选项editText
。IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTSrootView
或 IMPORTANT_FOR_AUTOFILL_NO 视图完全没有效果。
有任何想法吗?谢谢。
我正在尝试为EditText
除我的登录屏幕之外的所有 ' 禁用自动填充。而且还没有成功。longPress
on之后总是有“自动填充”选项editText
。IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTSrootView
或 IMPORTANT_FOR_AUTOFILL_NO 视图完全没有效果。
有任何想法吗?谢谢。
也许你和我有同样的问题我混合了建议和自动填充,然后我将importantForAutofill设置为 false,一切都很好
你可以通过“no”importantAuroFill 例如
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:importantForAutofill="no" />