我想在列表视图的项目中更改 ImageView 的状态,而不受父项目状态的影响。但我没有得到它?非常感谢您的友好回复!我的代码如下所示!
listview 中项目布局的第一部分:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_new_folder"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView android:id="@+id/iv_edit_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/iv_delete_folder"
android:visibility="invisible"
android:focusableInTouchMode="false"
/>
second the drawable of the imageview
<?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/iv_delete_p"/>
<item android:drawable="@drawable/iv_delete_n"/>
</selector>
当我单击该项目而不是图像本身时,我发现正在按下可绘制对象!任何的想法?