9

我正在尝试为EditText除我的登录屏幕之外的所有 ' 禁用自动填充。而且还没有成功。longPresson之后总是有“自动填充”选项editText。IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTSrootView或 IMPORTANT_FOR_AUTOFILL_NO 视图完全没有效果。

有任何想法吗?谢谢。

4

2 回答 2

8

也许你和我有同样的问题我混合了建议和自动填充,然后我将importantForAutofill设置为 false,一切都很好

于 2018-06-01T13:33:11.150 回答
4

你可以通过“no”importantAuroFill 例如

<EditText
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:importantForAutofill="no" />
于 2020-04-09T16:03:02.680 回答