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

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -