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.
我正在使用 android 中的自定义 InputConnection。一切正常,但我想在光标的当前位置和特定单词的开始位置之间获取字符。
有什么建议吗?我怎样才能做到这一点?
谢谢..
getSelectionStart() 可能是这里的答案。它返回光标的位置。然后将文本从 0 解析到该位置。这来自 TextView。
如果您想从 InputConnection 获取该信息,这很难,因为没有用于获取光标位置的 API。