如何从Edittext中检索不同语言的字符串
我遇到了这个问题 如何从 edittext 检索另一种语言(非英语)的字符串?
I faced this problem
how can I retrieve string with another language (not English) from edittext?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够简单地在 TextWatcher 中调用
toString()
:设置监听器:
name.addTextChangedListener(new GenericTextWatcher(name));
定义您的侦听器:
在您尝试存储或显示字符串之前,字符串所使用的语言并不重要。
You should be able to simply call
toString()
in your TextWatcher:Set your listener:
name.addTextChangedListener(new GenericTextWatcher(name));
Define your listener:
The language the String is in shouldn't matter until you try to store or display it.