dev_android
dev_android

Reputation: 8818

Android EditText Focus

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?

Upvotes: 3

Views: 3605

Answers (1)

ingsaurabh
ingsaurabh

Reputation: 15269

try below code

text_other_msg.requestFocus();

Upvotes: 6

Related Questions