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
:
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
Post a Comment