如何在<string> XML(eclipse / android)中新build一行或制表符?
所以,在我的strings.xml中,我有一个非常长的文本,我想格式化。 我怎样才能在文本的第一句话之前放一个标签? 另外,新行代码是什么? 谢谢
为标签添加\t
,为新行添加\t
\n
。
如果您想要插入标签,请使用\n
换行符和\t
。
您还可以使用一些XML标记进行基本格式设置: <b>
粗体文本, <i>
斜体, <u>
加下划线文本
更多信息:
https://developer.android.com/guide/topics/resources/string-resource.html
使用\ t添加制表符,\ n换行,这里是一个简单的例子。
<string name="list_with_tab_tag">\tbanana\torange\tblueberry\tmango</string> <string name="sentence_with_new_line_tag">This is the first sentence\nThis is the second scentence\nThis is the third sentence</string>
您可以使用\n
作为新行, \t
作为制表符。 另外,额外的空格/制表符只是复制的方式,你写在Strings.xml
所以只要给你一个空间,你想要他们的情侣。
一个更好的方法来达到这个可能是使用填充/边缘在你的观点XML和分割你的长文本在不同的string在你的string.xml
为标签添加'\ t'
<string name="tab">\u0009</string>