获取光标之前的整个文本
我需要在我的 InputMethod 类中的光标之前获取整个文本字符串。 getTextBeforeCursor() 只获取“n”个字符,但我不知道文本的长度。
I need get whole text string before the cursor in my InputMethod class. getTextBeforeCursor() gets only "n" characters, but I don't know text's length.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅此文档。似乎您可以这样做:
或其他一些大数字,因为它只从输入中获取文本 - 而不是所有“n”字符。
See this documentation. It seems that you can do this:
or some other large number since it only takes the text from the input - not all the 'n' characters.
试试这个。这应该有效。
Try this.This should work.
如上所述,您可以使用大量的 getTextBeforeCursor() 。如果它返回相同长度的字符串,您可以尝试获取更大的字符串。但要小心,某些应用程序(例如三星的电子邮件应用程序)会返回整个长度的字符串!即使您输入 1 个字符。
As was said above you can use getTextBeforeCursor() with large number. If it return string with same length, you can try get bigger one. But be careful, some applications, like email app from Samsung return whole length string! Even if you type 1 character.