一、控件分析
1、Button---按钮
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="warp_content"
android:text="Button" />
2、ImageButton----图片按钮
<ImageButton
android:id="@+id/ImageButton1"
android:layout_width="match_parent"
android:layout_height="warp_content"
android:src="@drawableabc_ab_share_pack_holo_light" />
二、Button和ImageButton特征1、共有的特征:
都可以作为一个按钮产生点击事件
2、不同点
1>Button有text属性,ImageButton没有
2>ImageButton有src属性,Button没有
3、都会产生明显的点击效果
三、实现Button效果
activity_main.xml
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/button_name" />
一般汉字内容、字符串内容不直接写在activity_main.xml中,通常是写在res/values/string.xml里的。
在该文件中写入一个string的资源<string name="button_name">登陆</string>
在activity_main.xml中去访问在string.xml里添加的这个汉字内容的资源: android:text="@string/button_name"
备注:res下所有的资源都会对应在gen的包下的R.java中对应的生成一个资源id,也就是说唯一标示这s个数据的资源id.
四、实现ImageButton效果
<ImageButton
android:background="#000000"
android:id="@+id/imageButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
五、总结
*Button是可以设置文本内容的一个按钮
*ImageButton不可以设置内容,可以通过background及src属性添加一个图片image。当前图片上可以做一个有文本内容的图片。