TextView属性

来源:互联网 发布:乐清知临寄宿学校招聘 编辑:程序博客网 时间:2024/05/21 17:08

android:text  文本内容

android:id    命名

android:layout_width  在父布局中的宽度

wrap_content  包裹住内容,根据控件里面的内容来决定控件的宽高

match_parent  适配父容器,根据直接父容器里面子容器的数量和设置来自动适配宽高

fill_parent match_parent

android:layout_height 在父布局中的宽度

android:textColor文字颜色,RGB的颜色值

android:textSize文字大小,单位最好用sp

android:gravity文字在控件中的位置

top上面 bottom下面 left左边 right右边

center中间 center_horizontal横向居中center_vertical纵向居中

android:maxLines显示最大行数

android:ellipsize显示不完全的内容用省略号代替,可以指定省略号的位置

start开始位置middle中间位置end结束位置

android:background设置背景(颜色,图片,圆角)

android:clickable控件是否可点击

android:paddingLeft内部左边距

android:paddingRight内部右边距

android:paddingTop内部上边距

android:paddingBottom内部下边距

android:paddingTop外部上边距

android:layout_marginLeft外部左边距

android:layout_alignParentTop和父容器的顶部对齐

android:layout_alignParentBottom和父容器的底部保持对齐

android:layout_alignParentLeft和父容器的左边保持对齐

android:layout_alignParentRight和父容器的右边保持对齐

 

3 0