我在我的应用程序中实现了一个DrawerLayout,我希望在按下状态时可以更改项目的图像。您好,以下代码表示抽屉布局中项目的模板。我知道如何在按下状态时更改整个项目的颜色,但我不知道如何更改图像,因为图像是LinearLayout的子项。任何人都可以帮助我或建议我这样做吗?
由于
代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/CustomSelector"
android:orientation="horizontal"
android:minHeight="65dp">
<TextView
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#5AC834"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp" />
<ImageView
android:id="@+id/listImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"
android:layout_weight="0"
android:layout_gravity="center_vertical"
android:paddingLeft="5dip" />
<TextView
android:id="@+id/listText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#334370"
android:textSize="22dip"
android:textStyle="bold"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:paddingLeft="10dip" />
</LinearLayout>
答案 0 :(得分:0)
您可以使用选择器来实现此目的。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/CustomSelector"
android:orientation="horizontal"
android:minHeight="65dp">
<TextView
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#5AC834"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp" />
<ImageView
android:id="@+id/listImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_selector"
android:layout_weight="0"
android:layout_gravity="center_vertical"
android:paddingLeft="5dip" />
<TextView
android:id="@+id/listText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#334370"
android:textSize="22dip"
android:textStyle="bold"
android:layout_weight="1"
android:layout_gravity="center_vertical"
android:paddingLeft="10dip" />
</LinearLayout>
在res / drawable文件夹下创建icon_selector.xml。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/btn_default_disabled_focused" android:state_focused="true" android:state_enabled="false"/>
<item android:drawable="@drawable/btn_default_focused" android:state_focused="true" android:state_enabled="true"/>
<item android:drawable="@drawable/btn_default_disabled" android:state_enabled="false"/>
<item android:drawable="@drawable/btn_default_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/btn_default_normal" />
</selector>
如果您想以编程方式更改选择器,可以更改如下。
StateListDrawable states = new StateListDrawable();
states.addState(new int[] {android.R.attr.state_pressed},
getResources().getDrawable(R.drawable.pressed));
states.addState(new int[] {android.R.attr.state_focused},
getResources().getDrawable(R.drawable.focused));
states.addState(new int[] { },
getResources().getDrawable(R.drawable.normal));
imageView.setImageDrawable(states);