将光标从 EditText1 设置到 EditText2

发布于 2024-10-22 02:50:34 字数 493 浏览 1 评论 0原文

我想在执行将重置所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所有深爱都是秘密 2024-10-29 02:50:34

对您的 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.

活雷疯 2024-10-29 02:50:34

requestFocus() 可以解决这个问题,我在我的 .java 文件中添加这个函数并且它可以工作:)。
示例:

vol = (EditText) findViewById(R.id.volume2);
vol.requestFocus();

如果我们要将光标设置在“volume2”EditText 上。

requestFocus() can solve the problem, I add this function in my .java file and it works :).
Example:

vol = (EditText) findViewById(R.id.volume2);
vol.requestFocus();

If we want to set the cursor on the "volume2" EditText.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文