在ImageView的我已經設置了圓角的邊框爲象下面這樣:Android:如何在這種情況下設置選擇器xml?
<ImageView
android:id="@+id/twsbiLogoButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="right"
android:src="@drawable/tp_twsbi_logo"
android:background="@drawable/logo_layout_border"></ImageView>
其中的背景是xml文件,如:
<?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dip"
/>
<solid
android:color="#3D2A1D"/>
<corners
android:radius="20sp"
android:topRightRadius="0dp"
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"/>
</shape>
,但我也想給選擇到ImageView的就那麼如何podssible?
不,親愛的,我的意思是,我們將選擇器放在按鈕背景上,在我們預設它的時候生效。就像我想爲我的imageView一樣。如果用戶按下它,應該改變顏色。 –