光标位置到达编辑文本的开头

发布于 2024-09-04 11:16:33 字数 239 浏览 5 评论 0原文

我有一个小问题。在我的活动中,我有一个编辑文本和一个按钮。

单击按钮我正在更改编辑文本的输入类型。

现在,当我单击按钮时,输入类型会发生变化,但光标会转到编辑文本中的文本开头。

如何保留光标的相同位置或者可以将光标移至文本末尾?

我尝试了 setSelection(edittextobj.getText().length()) 但不起作用,我怎样才能实现这个......?

I have a small problem. In my activity I have an edittext and a button.

Clicking on the button I am changing the inputtype of the edittext.

Now when I click button the input type changes but the cursor goes to the begining of the text in the edittext.

How can I retain the same position of the cursor or can I bring the cursor to the end of the text?

I tried setSelection(edittextobj.getText().length()) but doesnot work how can I achive this....?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜司空 2024-09-11 11:16:33

只是为了确保,完整的代码是:

edittextobj.setSelection(edittextobj.getText().length());

Just to make sure, the complete code is:

edittextobj.setSelection(edittextobj.getText().length());
唔猫 2024-09-11 11:16:33

就目前而言,您拥有的代码是正确的。问题一定出在其他地方。尝试确保您的字符串是正确的字符串,并且您以正确的顺序设置所有内容。

The code you have is correct, as far as it goes. The problem must lie elsewhere. Try ensuring your string is the correct string, and that you're setting everything in the correct order.

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