单击非焦点 EditText 时光标位置未更新
单击非焦点 EditText 时,它会获得焦点,但光标不会移动到新位置。我应该再次单击它以将光标移动到新位置。
问:如何才能一键聚焦和移动光标?
When non-focused EditText clicked, it becomes focused, but cursor does not move to new location. I should click it again to move cursor to a new position.
Q: How can I focus and move cursor with only one click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我花了相当多的时间来解决同样的问题,这就是我所做的:
在布局 xml 中,启用 focusable 和 focusableInTouchMode
否则,每当软键盘出现时,它都会自动滚动到 EditText 的前面。您可以通过重写“OnFocusChangeListener”来修改位置,但是每次轮询单击的位置有点难看。我将坚持上述更改。
I spent quite some time battling the same problem, and this is what I did:
In your layout xml, enable focusable and focusableInTouchMode
Otherwise, whenever the softkeyboard comes up, it automatically scrolls to the front of the EditText. You can modify the position by overriding "OnFocusChangeListener" but it's a little ugly to poll the clicked position every time. I'm going to stick with the change above.