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

用片段替换某些东西

动态 TextView 未在片段中更新

Android从另一个片段设置Textview

片段 TextView 无法从 parcelable 对象更新

调整片段中 TextView 的文本大小