I\'m trying to disable autofill for all EditText
\'s except my login screen. And no success yet. There is always \"Autofill\" option after longPress
you can pass "no" importantAuroFill e.g.
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:importantForAutofill="no" />
maybe you have the same problem as I had I mixed-up suggestion and auto-fill, then I set importantForAutofill to false and everything was fine