3

可能重复:
在字符串资源中强制使用空格

这是我用于我的 Android 项目的 strings.xml 文件。

........
........
<string name="bcount">Block Count\t\t\t: </string>
<string name="fbcount">Free Blocks\t\t\t: </string>
<string name="blsiz">Block Size\t\t\t: </string>
<string name="newvfs">New VFS</string>
<string name="mknewfold">Making new folder </string>
<string name="creating">Creating </string>
........
........

这样做的问题是字符串末尾的空格"Block Count\t\t\t: "消失了。仅"Block Count\t\t\t:"由 java 返回。如何解决这个问题?

4

1 回答 1

16

Android 不支持在末尾保留空格,有关更多信息,请参阅Stackoverflow 答案。

解决方案斜线解决方法是使用 \u0020 代替那些后缀空格。

于 2012-04-05T20:32:44.007 回答