我有一个 ImageButton 和一个包装该按钮的 LinearLayout,如下所示:
<LinearLayout
android:id="@+id/homeButtonLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/p_buttons_background"
android:orientation="vertical" >
<ImageButton
android:id="@+id/homeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10px"
android:background="@drawable/home_icon"
android:onClick="goBackToCameraScreen" />
</LinearLayout>
如上所示,我在 LinearLayout 中的 ImageButton 周围放置了一个背景。
当用户单击 ImageButton 时,我希望能够更改该背景(即LinearLayout的背景,而不是 ImageButton 的背景)。我可以以编程方式做到这一点,但我想通过 XML 做到这一点。我可以通过编写选择器轻松更改ImageButton的背景,如下所示:
<?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/button_pressed" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@drawable/button_focused" /> <!-- focused -->
<item android:drawable="@drawable/button_normal" /> <!-- default -->
</selector>
这正是我想要的,除了我想更改 LinearLayout 背景,而不是 ImageButton 背景。我怎样才能像上面那样创建一个 XML 选择器,但这实际上改变了 LinearLayout 的背景而不是 ImageButton 背景?
先感谢您!!=)