私はあなたのための解決策を持っています
ImageButton
および「TextView」を「LinearLayout」でラップします
- Imagebuttonとtextviewのイベントを
clickable
無効にしますfocusable
- カスタムセレクターを適用します
LinearLayout
更新されたcustom_component.xml
レイアウトファイルがここにあります
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#f0f0f0"
android:gravity="center"
android:orientation="horizontal"
android:padding="10dp" >
<LinearLayout
android:id="@+id/myCustomComponent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/layout_bgimage_selector"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center"
android:orientation="vertical" >
<ImageButton
android:id="@+id/testImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:src="@drawable/icon" />
<TextView
android:id="@+id/testText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:text="Test Text"
android:textColor="#FFF" />
</LinearLayout>
</RelativeLayout>
このレイアウトファイルはカスタムセレクターxmlファイルを使用します。これはフォルダーlayout_bgimage_selector.xml
に配置する必要がありますres/drawable
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/background" android:state_enabled="false"/>
<item android:drawable="@drawable/background" android:state_focused="true" android:state_pressed="true"/>
<item android:drawable="@drawable/background_over" android:state_enabled="true" android:state_pressed="true"/>
<item android:drawable="@drawable/background_over" android:state_enabled="true" android:state_focused="true"/>
<item android:drawable="@drawable/background" android:state_enabled="true"/>
</selector>
レイアウトセレクターに使用した9パッチイメージは次のとおりです。
background.9.png-
background_over.9.png-
それらをres/drawable-hdpi
フォルダに配置します。(またはデバイス構成に一致する任意の画像リソースフォルダー)