有方法1:
android:inputType="textPassword|textNoSuggestions"
设置了无效;
方法2:
super.onCreate(savedInstanceState); disableAutoFill();
@TargetApi(Build.VERSION_CODES.O) private void disableAutoFill() { getWindow().getDecorView().setImportantForAutofill(View.IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS); }
设置了也无效;
方法3:android:importantForAutofill="no"
在EditText方法上设置了,生效