无法理解如何仅在xml中添加新行

时间:2016-02-25 23:06:42

标签: android android-xml android-resources

请解释我如何才能在xml中添加新行(当我在程序中使用此字符串时,这必须是单行)?

例如:

#something > div:nth-child(3) > h3

但是在程序中,当我使用<string name="test">This is test line</string> 时,它将加载单个字符串,而没有一些新的行字符:getString(R.string.test);。 我只需要这个文件格式化。

1 个答案:

答案 0 :(得分:1)

如果你想在XML字符串中强制换行,只需使用'\ n'(假设TextView的大小正确):

<string>This\nis\ntest\nline</string>

<强>输出



测试
线

请参阅:How to insert a new line in strings in Android

否则,您可以使用空格&#032;&#160;来调整字符串格式。

请参阅:How to put space character into a string name in XML?