android - How to disable displaying suggestions in Delphi -


can programmatically disable display of "sugested words" tedit on virtual keyboard in delphi android?

in java simple:

final edittext et = (edittext) findviewbyid(r.id.searchtext); et.setinputtype(et.getinputtype()     | editorinfo.type_text_flag_no_suggestions     | editorinfo.type_text_variation_filter); 

but in delphi, not found setinputtype.

yes, can. set tedit.keyboardtype alphabet:

enter image description here

documentation here says:

alphabet alphanumeric keyboard general text input.

on android, alphabet keyboard type has no word completion/word suggestion. keyboard looks same default keyboard, without suggestions.

to achieve same programmatically write f.ex.

edit1.keyboardtype := alphabet; 

Comments

Popular posts from this blog

wireshark - USB mapping with python -

c++ - nodejs socket.io closes connection before upgrading to websocket -

Deploying Qt Application on Android is really slow? -