如何制作新的行或标签 XML(eclipse / android)?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何制作新的行或标签 XML(eclipse / android)?相关的知识,希望对你有一定的参考价值。
所以,在我的strings.xml中,我有一个非常长的文本,我想以某种方式格式化。如何在文本的第一句之前加上一个标签?另外,新线的代码是什么?谢谢
答案
为标签添加
,为新线添加
。
另一答案
如果要插入制表符,请使用
作为换行符和
。
您还可以使用一些XML标记进行基本格式化:<b>
用于粗体文本,<i>
用于斜体,<u>
用于带下划线的文本
更多信息:
https://developer.android.com/guide/topics/resources/string-resource.html
另一答案
使用 t为新行添加制表符和 n,下面是一个简单示例。
<string name="list_with_tab_tag"> banana orange blueberry mango</string>
<string name="sentence_with_new_line_tag">This is the first sentence
This is the second scentence
This is the third sentence</string>
另一答案
您可以使用
作为新行,使用
作为标签。此外,额外的空格/制表符只是按照你在Strings.xml
中编写它们的方式复制,所以只需给你想要它们的几个空格。
达到此目的的更好方法可能是在视图xml中使用填充/边距并在string.xml
中将长文本拆分为不同的字符串
另一答案
为标签添加' t'
<string name="tab">u0009</string>
另一答案
在string.xml的顶部添加此行
<?xml version="1.0" encoding="utf-8"?>
并使用
'
'
从哪里想要破坏你的路线。
恩。 <string> Hello world.
its awesome. <string>
输出:
Hello world.
its awesome.
另一答案
- 在您的布局
xmlns:tools="http://schemas.android.com/tools"
中包含此行 - 现在,使用
- 示例:
为 n:
android:text="Welcome back ! Please login to your account agilanbu"
为 t:android:text="Welcome back ! Please login to your account agilanbu"
以上是关于如何制作新的行或标签 XML(eclipse / android)?的主要内容,如果未能解决你的问题,请参考以下文章