B4A Question Disable edittext auto-fill - RB Smissaert (first post)    May 2, 2024 , 0x00080000)
It looks I need to be able to manipulate that popup.
RBS
Actually on that Samsung Tab S6....InputType, 0x00080000)
No idea what is going on here.
Autosuggest is turned on the tablet... B4A Question NO_SUGGESTIONS not working on Galaxy phone - Arf    Sep 12, 2015 I'm trying to stop suggestions/autocomplete from suggesting words when entering a field in an editBox, like this:
NameEntryBox.InputType = Bit.Or(NameEntryBox.INPUT_TYPE_TEXT,0x00080000)
It works fine on most tablets, but on my galaxy S3 phone the suggestions are still there.
Is there anything further I can do to porevent this?... B4A Library BasicLib interpreter and BasicIDE development IDE revisited - agraham    May 8, 2021   (25 reactions)   tags: Embed basic B4A, Erel = 0x00080000 ' TYPE_TEXT_FLAG_NO_SUGGESTIONS edtSource.SingleLine = False I have posted... Spanish problema autocompletar - TILogistic (first post)    Dec 30, 2020 Prueba esto:
esto debería detener las sugerencias de correcciones automáticas.
EditText:
EditText1.InputType = Bit.Or(EditText1.InputType, 0x00080000)
o
EditText1.InputType = 0x00080000
B4XFloatTextField :
Dim et As EditText = mail.TextField
et.InputType = Bit.Or(et.InputType, 0x00080000)
o
et.InputType = 0x00080000
busqueda:
Search Results | B4X Programming Forum... B4A Question Textfield autocmplete (as in chrome) - TILogistic (first post)    Jan 16, 2021   (1 reaction) not suggestions:
EditText:
EditText1.InputType = Bit.Or(EditText1.InputType, 0x00080000)
o
EditText1.InputType = 0x00080000
B4XFloatTextField :
Dim et As EditText = mail.TextField
et.InputType = Bit.Or(et.InputType, 0x00080000)
o
et.InputType = 0x00080000
see:
https://developer.android.com... B4A Question How to disable spellcheck in AS TextFieldAdvanced? - Tareq Khan (first post)    Sep 22, 2025
The problem here is, that you need to access the native edittext:
AS_TextFieldAdvanced1.NativeTextField
Private Sub DisableSpellcheckAS(etJO As JavaObject)
etJO.RunMethod("setInputType", Array(Bit.Or(0x00080000, 0x00000090)))
End Sub
I called the Sub like below:
DisableSpellcheckAS (xtf_Email.NativeTextField)
It woked and I don't see any spell check red line.
However... B4A Question PlacesAutocompleteView not working in panels - Willian Padilha (first post)    May 23, 2019   (1 reaction) .InputType = Bit.Or(et.INPUT_TYPE_TEXT, 0x00080000)
Now
et.InputType = Bit.Or(et.INPUT_TYPE_TEXT, 0x00080000)
lv.Initialize("lv")
expected
lv.Initialize("lv")
et.InputType... B4A Question Keyboard no password suggested and all characters accepted - bluedude    Dec 1, 2014 .INPUT_TYPE_TEXT, 0x00080000),Null)
Not sure how to set accept all characters.... B4A Question Disable soft keyboard in b4xlib - RB Smissaert    Aug 16, 2024   (1 reaction) , 0x00080000) '0x00080000 = 524288, this doesn't stop the Auto-fill popup if the edit text has no... B4A Question Password not protected - Erel (first post)    Aug 30, 2020   (1 reaction) Add this: EditText1.InputType = Bit.Or(0x00000080, 0x00080000) 'TYPE_TEXT_FLAG_NO_SUGGESTIONS | TYPE_TEXT_VARIATION_PASSWORD This is how it is set in B4XFloatTextField.... Page: 1   2   3   4   5   6   7   |