TextView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView相关的知识,希望对你有一定的参考价值。
作用:用于显示文本信息。可显示单行;多行;带图片的文本。
使用:
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="显示文本" />
属性:
http://www.runoob.com/w3cnote/android-tutorial-textview.html
强制换行: -- 加入“ \n ”即可
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="显示文本\n强制换行" />
以上是关于TextView的主要内容,如果未能解决你的问题,请参考以下文章
SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML