Chinaunix首页 | 论坛 | 博客
  • 博客访问: 327329
  • 博文数量: 96
  • 博客积分: 2041
  • 博客等级: 大尉
  • 技术积分: 1080
  • 用 户 组: 普通用户
  • 注册时间: 2012-01-20 14:08
文章分类

全部博文(96)

文章存档

2015年(2)

2013年(1)

2012年(93)

分类: 系统运维

2012-02-06 23:03:58

在按钮上使用图片

java.lang.Object
   android.view.View
     android.widget.ImageView
       android.widget.ImageButton

Button类是TextView类的子类,表示文本的扩充

ImageButton是ImageView类的子类,表示对图片的扩充


    xmlns:android="
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

            android:id="@+id/rig"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/right"/> 使用图片替代了文字
              android:id="@+id/wro"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/wrong"/> 使用图片替代了文字

 

TextView和Button的关系= ImageView和ImageButton的关系

阅读(649) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~