如何在android字符串资源的末尾添加一个空格

时间:2013-06-21 23:10:31

标签: android

使用以下资源:

<string name="str">ends with a space </string>

结束失去的空间。

<string name="str">ends with a space&#160;</string>

保留空间,但是android将其视为无空间。

有没有办法在资源字符串的末尾指定一个空格?这是一个库函数,所以我不知道资源中可能指定了哪些字符串。

显然我考虑过:

<string name="str">ends with a space£</string>
<string name="my_breaking_space_at_end_of_android_resource">£</string>

并使用regEx。

1 个答案:

答案 0 :(得分:1)

你似乎尝试过很多东西。您还可以尝试以下方式:

1)只需要有空格并用双引号括起整个字符串:

<string name="foo">"End with space "</string>. 

2)你也尝试了this回答,其中说试试以下内容:

Insert \u0020 directly in the XML for a blank you would like to preserve:

<string name="foo">End with space \u0020</string>

希望这对你有帮助。