我有一个编辑文本,长按它我不希望自动填充选项包含在侧面复制、粘贴、选择等中
我试着做下面的代码,这反过来对我没有帮助
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();
}
}
我希望不应该列出自动填充选项,但它与复制、粘贴、选择等一起列出