本文介绍了Android的无断裂空间 - 如何?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个错误,其中的仅在HTC EVO 4G在EditText上的文本显示了下划线代替空格的Jack_Johnson,而不是杰克·约翰逊。数据来自一台服务器。
我如何合并\\ u00A0或放大器; NBSP到下面的code?请问,即使解决我的问题?
editName.setText(recipient.name);
解决方案
试试这个:
editName.setText(Html.fromHtml(recipient.name));
I have a bug, where only on HTC Evo 4g text in EditText shows up with underscores instead of spaces Jack_Johnson, instead of Jack Johnson. The data comes from a server.
How do I incorporate \u00A0 or   into the code below? Will that even fix my problem?
editName.setText(recipient.name);
解决方案
Try this:
editName.setText(Html.fromHtml(recipient.name));
这篇关于Android的无断裂空间 - 如何?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!