标签:
作用:用于显示文本信息。可显示单行;多行;带图片的文本。
使用:
<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强制换行" />
标签:
原文地址:http://www.cnblogs.com/H-BolinBlog/p/5290182.html