码迷,mamicode.com
首页 > 其他好文 > 详细

TextView

时间:2016-03-18 01:51:47      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

作用:用于显示文本信息。可显示单行多行带图片的文本

使用:

<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

标签:

原文地址:http://www.cnblogs.com/H-BolinBlog/p/5290182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!