Android EditText Focus

I installed Listener to change the counter selection. In the listener, I want to focus the EditText field. I used the following code:

text_other_msg.setFocusable (true);

He does not work. I also tried using setFocusableInTouchMode. But nobody is working. How to focus EditText?

+3
source share
1 answer

try under code

text_other_msg.requestFocus();
+6
source

All Articles