标签:col ext height 禁用 nbsp extc textview 颜色 rda
归纳一下控件属性,很多属性都是共通的,不一定只有我归类那个可以用
TextView:
android:id:给当前控件定义唯一标示符
android:layout_width:指定控件的宽度
android:layout_height:指定控件的高度
(高宽属性的可选值:match_parent(比起match_parent更推荐这 个)/wrap_content/fill_parent)
android:gravity:指定文字的对其方式
(可用“|”来同时指定多个值)
android:textSize:指定文字的大小(字体大小通常用sp做单位,此时字体大小会随系统字体大小相对改变)
android:textColor:指定文字的颜色
android:text:指定显示的内容
ImageView:
android:src:指定一张图片
EditText:
android:hint:指定一段提示性的文本
android:maxLines:指定EditText的最大行数
Button:
android:textAllCaps:禁用大写转换
ProgressBar:
android:visibility:控件的可见性(
visible:可见(默认)
invisible:不可见
gone:不可见,且不再占用任何屏幕空间)
style:指定进度条的造型(默认为转动的圆圈圈)
android:max:设置进度条的最大值
标签:col ext height 禁用 nbsp extc textview 颜色 rda
原文地址:https://www.cnblogs.com/IceBlueBrother/p/8941930.html