Android中ImageButton的运用详解

    ImageButton在Android 的运用非常灵活,既可以在.java中实现,也可以在.xml中实现,但相比较而言在.xml中实现更有利于代码的改动,现分别讲述以上两种实现方式:

 

1. 一种是在代码里自己的图片

m_ImageButton.setImageDrawable(getResources().getDrawable(R.drawable.my_button));

  系统自带的图片

m_ImageButton.setImageDrawable(getResources().getDrawable(Android.R.drawable.sym_call_incomin

 2. 一种是在XML文件里自己的图片

Android:src="../../@drawable/ic_media_play"

 系统自带的图片

Android:src="@android:drawable/sym_call_incoming"
 

3. 指定按钮的背景图,有state_pressed和state_focused,分别代表按下去和焦点停留(用方向键等控制)时的状态

默认都是false。下面可以实现按下去时的背景图。

在main.xml里添加,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="#ffffff">

 <ImageButton 
        android:id="@+id/btn_sysbar_custom1"
        android:src="@drawable/sysbar_custom1" 
        android:layout_centerVertical="true"
        android:background="@drawable/button_add_x"
        android:layout_width="60px" 
        android:layout_height="120px"
        android:layout_gravity="center_vertical" />

</LinearLayout>

 在res/drawable下添加一个button_add_x。xml的文件

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true" android:drawable="@drawable/sysbar_custom1_pressed" />
    <item android:state_selected="true" android:drawable="@drawable/sysbar_custom1_default" />
    <item android:drawable="@drawable/sysbar_custom1_default" />

</selector>
 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值