How to do for a TEdit
, which is being accessed on Android, do not lose focus because of the virtual keyboard that comes when the focus goes to TEdit
?
How to do for a TEdit
, which is being accessed on Android, do not lose focus because of the virtual keyboard that comes when the focus goes to TEdit
?
Are you referring to EditText
? If so, at the location of your code that causes your EditText
to lose focus, you can try adding:
editText.requestFocus();
It should probably work (keep focus on the element). If it does not work, take a look at these solutions: