Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的布局中有一个编辑文本。经过一些用户操作后,我想检查光标位置是第一个位置还是其他任何位置。怎么做?
您可以使用 getSelectionStart() 和 getSelectionEnd() 方法获取光标位置。如果没有突出显示文本,getSelectionStart() 和 getSelectionEnd() 都会返回光标的位置。因此,您可以执行以下操作:
yourEditText.getSelectionStart();
或者
yourEditText.getSelectionEnd();