分类: 系统运维
2012-02-06 23:03:58
在按钮上使用图片
java.lang.Object
android.view.View
android.widget.ImageView
android.widget.ImageButton
Button类是TextView类的子类,表示文本的扩充
ImageButton是ImageView类的子类,表示对图片的扩充
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/right"/> 使用图片替代了文字
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/wrong"/> 使用图片替代了文字
TextView和Button的关系= ImageView和ImageButton的关系