获取EditText的字符数
我正在尝试获取 EditText 的字符数。我研究了 EditText 和 TextView 类的不同属性,但似乎没有返回字符数的函数。我尝试使用 TextWatcher,但这并不理想,因为有时我从首选项将保存的消息加载到 EditText 中,而 TextWatcher 不会计算当时未输入的字符。
任何帮助都会很棒!
干杯!
I'm trying to get a character count of an EditText. I've looked into different properties of the EditText and TextView classes, but there doesn't seem to be a function that returns the amount of characters. I have tried to use the TextWatcher, but that is not ideal since sometimes I load a saved message into the EditText from the preferences, and TextWatcher does not count characters not typed right then.
Any help would be great!
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将 EditText 中的文本作为字符串抓取并检查其长度:
Just grab the text in the EditText as a string and check its length:
在 Kotlin 中,非常简单
In Kotlin it's very easy
<EditText_name>.Text.length