如何使文本居中 - Eclipse for Android
Posted
技术标签:
【中文标题】如何使文本居中 - Eclipse for Android【英文标题】:How to center text - Eclipse for Android 【发布时间】:2013-06-06 10:57:40 【问题描述】:我在 textView 中设置了一些文本来解释应用程序响应的命令,但无论我为重力输入什么,代码都会被格式化(扁平化)。文本应该是这样的:
命令和函数:
"left"- 将电视重力设置为向左并更改文本。 "right"- 将电视重力设置为向右并更改文本。 "center"- 将电视重心设置为中心并更改文本。 "blue"- 将 tColor 设置为 BLUE。 “重置”- 将所有电视属性重置为默认值 “WTF”- 随机化 tSize 和 tColour但结果却是这样:
这是我的代码(TextView 是线性布局):
<TextView
android:id="@+id/textView1"
android:layout_
android:layout_
android:gravity="center"
android:text="@string/tvTextPlayExplain"
android:typeface="serif"
/>
【问题讨论】:
【参考方案1】:删除android:gravity="center"
这一行,对于你输入的文本字符串,你应该使用字符“\n”来换行而不是回车。例如,字符串“This is line 1 \n This is line 2”会给你输出
This is line 1
This is line two
【讨论】:
【参考方案2】:您可以像这样在 string.xml 文件中声明文本,您将能够使用 html 标签来制作列表并保持格式:
<string name="tvTextPlayExplain">
<![CDATA[
<p>Commands and functions:</p><br/>
<ul>
<li>"left"- Sets tv gravity to left and changes text.</li>
.... and so on
<li>"WTF"- randomises tSize and tColour</li>
</ul>
]]>
</string>
然后使用:
myTextView.setText(Html.fromHtml(getString(R.string.tvTextPlayExplain)));
【讨论】:
以上是关于如何使文本居中 - Eclipse for Android的主要内容,如果未能解决你的问题,请参考以下文章