文章目录
TextView
(文本框)
属性
layout_width
控制宽度
属性值
match_parent 和父容器一样
wrap_content 匹配自身大小
数字 后缀 dp eg: 20dp
layout_height
控制高度
属性值 和宽度一样
id
eg:android:id="@+id/tv"
只能是小写
可在java中找到控件
findViewById(R.id.tv)
text
设置TextView中的内容
和java代码中setText的作用一样 , Java代码会覆盖在xml中的设置属性
textColor
设置文字颜色
#00(透明度)00(红色)00(绿色)00(蓝色)
textSize
内容字体大小
单位 sp
background
背景色
颜色或者是图片
gravity
<attr name="gravity">
<!-- Push object to the top of its container, not changing its size. -->
<flag name="top" value="0x30" />
<!-- Push object to the bottom of its container, not changing its size. -->
<flag name="bottom" value="0x50" />
<!-- Push object to the left of its container, not changing its size. -->
<flag name="left&