码迷,mamicode.com
首页 > 其他好文 > 详细

ImageButton动态改变按钮图片

时间:2014-08-01 13:10:11      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   color   io   文件   art   cti   

 

在drawable 目录下增加一个myselector.xml文件,appwidget_play.png,appwidget_played.png


myselector.xml文件中内容如下

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false"
        android:drawable="@drawable/appwidget_play" />  <!-- 正常情况下imagebutton效果 -->

  
<item android:state_focused="false" android:state_pressed="true"
        android:drawable="@drawable/appwidget_played" /> <!-- 按下后imagebutton效果 -->>
</selector>

 

layout文件中:

<ImageButton android:layout_height="wrap_content"  android:background="#00000000" android:id="@+id/imageButton1" android:layout_width="wrap_content" android:src="@drawable/myselector"

 

activity文件中:

 iImageButton = (ImageButton) findViewById(R.id.imageButton1);

 

这里不需要在设置iImageButton.setImageDrawable(getResources().getDrawable(R.drawable.appwidget_play));

ImageButton动态改变按钮图片,布布扣,bubuko.com

ImageButton动态改变按钮图片

标签:android   style   http   color   io   文件   art   cti   

原文地址:http://www.cnblogs.com/xgjblog/p/3884503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!