标签: android listener android-edittext setfocus
我已经设置了一个监听器来改变微调器的选择。在监听器中,我想要关注EditText字段。我使用了以下代码:
text_other_msg.setFocusable(真);
它不起作用。我也尝试过使用setFocusableInTouchMode。但没有一个工作。如何聚焦EditText?
答案 0 :(得分:6)
尝试以下代码
text_other_msg.requestFocus();