光标位置到达编辑文本的开头
我有一个小问题。在我的活动中,我有一个编辑文本和一个按钮。
单击按钮我正在更改编辑文本的输入类型。
现在,当我单击按钮时,输入类型会发生变化,但光标会转到编辑文本中的文本开头。
如何保留光标的相同位置或者可以将光标移至文本末尾?
我尝试了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是为了确保,完整的代码是:
Just to make sure, the complete code is:
就目前而言,您拥有的代码是正确的。问题一定出在其他地方。尝试确保您的字符串是正确的字符串,并且您以正确的顺序设置所有内容。
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.