I have an edit text and on long press on it i dont want autofill option to be included along side copy ,paste ,select etc
I tried doing the below code which in turn didn't help me
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();
}
}
I expected Autofill option should not be listed but it is listed along with copy ,paste ,select etc