Android EditText 第一次点击或触摸时的光标位置跟踪
我在 EditText 上挣扎了一天多。 我的目标是了解用户第一次单击 EditText 时的当前光标位置。
- 假设当前光标位于位置“5”,
- 单击位置“8”处的 EditText 小部件,
- 此时 getSelectionStart() 检索先前的值(例如“5”)。
- 再次单击位置“8”处的 EditText 小部件,
getSelectionStart()
检索位置变为“8”,(这是正确的,但需要在同一位置单击两次)- 单击新位置,情况将重复步骤3。
i am struggling with EditText for morethan a day.
My goal is to know current cursor positon that user's first click on the EditText.
- Assume current cursor at position "5",
- Click EditText widget at position "8",
- At this moment getSelectionStart() retrieve previous value say "5".
- Click EditText widget at position "8" again,
getSelectionStart()
retrieve the position become "8", (This is correct, but need click twice at same position)- Click on a new position, situation will repeat Step3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需尝试:(
如果您的操作不包含选择文本范围。)
Just try:
(If your action doesn't contain selecting a range of text.)