MitchBu Well-Known Member Licensed User Longtime User Sep 9, 2019 #1 I have an EditText in my program called "EtUser", and sure enough, it seems Google Autofill is intent on suggesting. Is there any way besides renaming the view to avoid autofill ?
I have an EditText in my program called "EtUser", and sure enough, it seems Google Autofill is intent on suggesting. Is there any way besides renaming the view to avoid autofill ?
DonManfred Expert Licensed User Longtime User Sep 9, 2019 #2 try B4X: EtUser.InputType = Bit.Or(EtUser.InputType, 0x00000080) ' Dont use autocompletion Last edited: Sep 9, 2019 Upvote 0
MitchBu Well-Known Member Licensed User Longtime User Sep 9, 2019 #3 Superb. Thank you DonManfred Upvote 0