0

我想在列表视图的项目中更改 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>

当我单击该项目而不是图像本身时,我发现正在按下可绘制对象!任何的想法?

4

1 回答 1

0

您可以使用该属性:android:duplicateParentState="true/false"

当此属性设置为 true 时,视图从其直接父级而不是从自身获取其可绘制状态(聚焦、按下等)

于 2012-06-25T14:31:23.413 回答