将光标从 EditText1 设置到 EditText2
我想在执行将重置所有 EditText 的按钮操作时将光标从 EditText1 移动到 EditText2,我尝试了此操作,但它不起作用:
final Button button2 = (Button) findViewById(R.id.button2);
button2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
vol.setText("");
kil.setText("");
cons.setText("");
Editable e = vol.getText();
int position = vol.length();
Selection.setSelection(e,position);
}
});
知道如何解决此问题吗?
I want to move the cursor from an EditText1 to an EditText2 when on button action that will reset all EditTexts, I tried this but it didn't work:
final Button button2 = (Button) findViewById(R.id.button2);
button2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
vol.setText("");
kil.setText("");
cons.setText("");
Editable e = vol.getText();
int position = vol.length();
Selection.setSelection(e,position);
}
});
Any idea how to resolve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对您的 EditText 使用类型提示。寻找 .focused 或 .setFocus 等。我从未做过你想做的事情,但我会从那里开始。
Use the type ahead sense for your EditText. Look for .focused or .setFocus, etc. I have never done what you're trying to do but I'd start there.
requestFocus()
可以解决这个问题,我在我的 .java 文件中添加这个函数并且它可以工作:)。示例:
如果我们要将光标设置在“volume2”EditText 上。
requestFocus()
can solve the problem, I add this function in my .java file and it works :).Example:
If we want to set the cursor on the "volume2" EditText.