《第一行代码:Android》第三版4.2常用控件的使用方法(2)
代码和例子具体的实际效果,请参考本人的同名博客(1),本文主要是各个控件的一些说明。
通用的属性
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#00ff00"
android:textSize="34sp"
android:text="This is TextView"/>
每个控件都有id ,宽度和高度属性。
id 就是一个id。
layout_width:宽度,layout_height:高度,有三个可能的值,分别为:
match_parent:和他的父亲一样大
wrap_content:包裹住内容
固定值:就是数字加一个单位,单位一般是dp ,比如说50dp。
TextView
用来在界面上显示一段文本信息。
android:textColor:指定字的颜色
android:textSize:字的大小
android:gravity:用来指定文字的对齐方式,可以是 top、bottom、start、end、center,中间还可以用|连接起来。
Button
和TextView差不多。
EditText
就是 编辑文字的区域,可以打字在这里,然后发给对方。
android:hint="Type something here"
使用android:hint 来指定一个提示文本。
ImageView
图片控件。
图片通常是放在drawable目录下的。
这里使用android:src属性给ImageView指定了一张图片。
ProgressBar
进度条控件,默认是圆圈形式的,可以改为水平的进度条
style="?android:attr/progressBarStyleHorizontal" 就改为了水平的进度条
android:max="100" 为进度条设置了最大值。
AlertDialog
警报对话框。
AlertDialog.Builder(this).apply {
setTitle("This is an Alert Dialog")
setMessage("Your house is on fire now")
setCancelable(false)
setPositiveButton("OK"){dialog,which->}
setNegativeButton("Cancel"){dialog,which->}
show()
使用了apply{}完成了对话框中各个属性的设置,title、message、肯定按钮OK、否定按钮Cancel。
控件有很多,这里就是大概说了说,具体可以看看文档,我看过一些代码提示,说老实话挺乱的......