0

親アイテムの状態に影響されずに、リストビューのアイテムの ImageView の状態を変更したい。しかし、私はそれを取得できませんでしたか?あなたの親切な対応に本当に感謝します!私のコードは次のようなものです!

リストビューのアイテムのレイアウトの最初の部分:

<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 に答える