3

I have set a Listener for change in selection of spinner. In the listener I want to focus a EditText field. I have used the following code:

text_other_msg.setFocusable(true);

It is not working. I also tried with setFocusableInTouchMode. But none is working. How to focus a EditText?

dev_android
  • 8,698
  • 22
  • 91
  • 148

1 Answers1

6

try below code

text_other_msg.requestFocus();
ingsaurabh
  • 15,249
  • 7
  • 52
  • 81