1.简单介绍
2.特征
3.实现Button和ImageButton
3.1使用Button
布局文件定义Button
strings.xml定义常量(汉字一般定义在strings.xml中,布局文件中通过@string/name引用)
原理: res资源文件下的文件都会在gen目录下R.java中生成一个id,唯一标识一个资源。
效果:
3.1使用ImageButton
布局文件:背景颜色设为黑色,通过src引用图片(高度为包裹图片大小),如果通过background引入图片是图片适应按钮大小
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/button_name" /> <ImageButton android:id="@+id/imageButton1" android:layout_width="match_parent" android:background="#000000" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /> </LinearLayout>
效果:
总结:
button可以设置文字,不可以设置图片
ImageButton 可以设置图片,如果希望设置文字可以通过background或者src引入一个带文字的图片实现文字按钮效果。