【发布时间】:2019-08-31 21:48:12
【问题描述】:
我有一个编辑文本,长按它我不希望自动填充选项包含在侧面复制、粘贴、选择等中
我尝试执行以下代码,但对我没有帮助
if (Build.VERSION.SDK_INT >= 26) {
AutofillManager autofillManager = cxt.getSystemService(AutofillManager.class);
if (null != autofillManager) {
view.setImportantForAutofill(IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS);
autofillManager.disableAutofillServices();
autofillManager.cancel();
}
}
我希望不应该列出自动填充选项,但它与复制、粘贴、选择等一起列出
【问题讨论】:
标签: android android-autofill-manager