UI组件使用

6.1常用ui组件
Textview:文本视图
Jlabel
<TextView
android:id=@+id/tv_ test1 message"//指定id
android: layoutwidth=match_parent//宽度
android: layout_height="wrapcontent//高度
android:text=这是TextView的内容”//文本
android: textColor="#ff0000"//文本颜色
android: textSize=“20sp”/>//字体大小
UI组件使用
6.2常用UI组件
布局文件里可以用属性设置相应组件的属性值;Java端也可以使用组件的方法设置。
dp(dip):device independent pixels(设备独立像素),不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA推荐使用这个,不依赖像素。
px:pixels(像素).不同设备显示效果相同,一般我们HVGA代表320x480像素,这个用的比较多。
pt:point,是一个标准的长度单位,1pt=1/72英寸,用于印刷业,非常简单易用;
sp:scaled pixels(放大像素).主要用于字体显示best for textsize.
1.TextView文本标签
作用:显示文本内容;很少使用交互;
6.2.1EditText
Android页面内容输入
设置输入类型:文字,数字,日期
ClickListener:单击
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:hint=“请输入手机号码”//页面输入提示文字
android:inputType=“phone”//限制输入文字内容
android:textsize=“20sp”//文字大小I

6.4Button普通按钮
android:id-"@+id/btn"
android:layout_width=“wrap_content”
android:layout_height-“wrap_content”
android:text=“按钮”
ClickListener:单击

6.5ImageView:图片视图
显示图片(html img)
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:src="@drawable/ic_launcher_foreground"//设置前景图片
android:background-"@drawable/ic_launcher_background"//设置背景图片
UI组件使用
UI组件使用
UI组件使用

上一篇:在不换行下根据子元素宽度决定一行显示几个子元素的父元素样式


下一篇:Linux内核模块检查