标签:
一、TextView控件的常用属性
android:id——控件的id
android:layout_width——控件的宽度
android:layout_height——控件的高度
android:text——文本内容
android:textSize——文本大小
android:textColor——文本颜色
android:background——控件背景
android:singleLine——是否单行显示(true为单行,false(默认)自动换行)
android:textStyle——字体样式(是否粗体,是否倾斜)
android:autoLink——字体链接(点击文字)
二、布局文件中设置TextView控件
<TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/name" android:textSize="28sp" android:textColor="#000000" /> <!-- wrap_content:包裹实际文本内容 fill_parent:当前控件铺满父类容器(独占一行):2.3api之前添加一个属性值 match_parent:当前控件铺满父类容器(独占一行):2.3api之后添加一个属性值 -->
标签:
原文地址:http://www.cnblogs.com/LO-ME/p/4656735.html