============问题描述============
对一个ImageView组件我进行了如下设置,点击图片出现以image_background.jpg图片背景
<item name="android:background">@drawable/image_select_background</item>
其中image_select_background.xml代码如下
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/image_background" android:state_pressed="true" />
</selector>
但是,现在我想在Java代码代码里将图片背景设置为空,当我想要背景的时候又是什么方法可以将最先的图片背景恢复呢(即恢复image_select_background.xml的配置,也就是点击图片时出现image_background.jpg这个背景)
============解决方案1============
ImageView iv = new ImageView(this); iv.setBackgroundResource(R.drawable.ic_launcher);
用setBackgroundResource就可以了
时间: 2024-10-26 03:42:48