与按钮组件(Button)类似,在Android中又提供了一个图片按钮,可以直接使用ImageButton定义
-
<?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout ? 定义线型布局管理器
-
xmlns:android=""
-
android:orientation="vertical" ? 所有组件垂直摆放
-
android:layout_width="fill_parent" ? 布局管理器宽度为屏幕宽度
-
android:layout_height="fill_parent"> ? 布局管理器高度为屏幕高度
-
<ImageButton ? 定义图片按钮组件
-
android:id="@+id/rig" ? 此组件的ID,程序中使用
-
android:src="@drawable/right" ? 显示的图片ID
-
android:layout_width="wrap_content" ? 组件宽度为图片宽度
-
android:layout_height="wrap_content" /> ? 组件宽度为图片高度
-
<ImageButton ? 定义图片按钮组件
-
android:id="@+id/wro" ? 此组件的ID,程序中使用
-
android:src="@drawable/wrong" ? 显示的图片ID
-
android:layout_width="wrap_content" ? 组件宽度为图片宽度
-
android:layout_height="wrap_content" /> ? 组件宽度为图片高度
-
</LinearLayout>
020409_图片按钮:ImageButton.ppt
阅读(1059) | 评论(0) | 转发(0) |