读书人

ndroid中运用selector动态改变imageVi

发布时间: 2012-09-20 09:36:50 作者: rapoo

ndroid中使用selector动态改变imageView或ImageViewButton的背景

做应用时,可能会需要动态改变控件的背景图片,如果仅仅是简单的点击,选中之类的事件,如果靠程序中写监听的代码就显得太麻烦了,在这种情况下,你可以使用selector动态改变控件背景拉:)?

1。在res/drawable目录下建一个mybutton.xml文件,根据需要,不同的状态下建立不同的item,并对应相应的图片?

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android"

android:constantSize="false" android:dither="true"

android:variablePadding="true">

<item android:drawable="@drawable/im_login_btn_s"

android:state_pressed="true" />

<item android:drawable="@drawable/im_login_btn_s"

android:state_focused="true" />

<item android:drawable="@drawable/im_login_btn_n" />

</selector>



2。在构造layout是引用这个xml?

<ImageButton?
android:id="@+id/ImageButton01"?
android:layout_width="wrap_content"?
android:layout_height="wrap_content"?
android:background="@drawable/mybutton">?
</ImageButton>?

这样就ok拉?

读书人网 >图形图像

热点推荐