2

ImageButtonとTextViewを同時に選択(クリックすると強調表示)する方法があるかどうか知りたいのですが。ImageButtonとTextViewがあります。それらをRelativeLayoutに配置し、背景を描画可能なセレクターxmlに設定しました。しかし、それらは一緒に強調されていません。ImageButtonボタンを押すと、それだけが強調表示され、レイアウトを押すと、ImageButtonを強調表示せずに強調表示されます。この面で私を助けてくれませんか?

ありがとうございました。

4

3 に答える 3

2

私はあなたのための解決策を持っています

  • 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.9.png

background_over.9.png-background_over.9.png

それらをres/drawable-hdpiフォルダに配置します。(またはデバイス構成に一致する任意の画像リソースフォルダー)

于 2012-07-19T09:46:10.550 に答える
1

TextViewとImageViewの親レイアウトにカスタム背景を使用する

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" 
>
    <item
        android:state_focused="true" 
        android:state_pressed="false" 
android:drawable="@drawable/listview_background_focused"        />
    <item
        android:state_focused="true" 
        android:state_pressed="true"
android:drawable="@drawable/listview_background_focused"        />
    <item
        android:state_focused="false" 
        android:state_pressed="true"
android:drawable="@drawable/listview_background_focused"        />
    <item
android:drawable="@drawable/listview_background_unfocused"      />
</selector>

子ビューではなく、親レイアウトのonclickListenerにそれぞれのコードを記述します。

于 2012-07-19T08:12:53.420 に答える
0

このようなテキストと画像を含む単一のボタンを宣言することをお勧めします。

 <Button
        android:id="@+id/dash_bt_list"
        android:drawableTop="@drawable/your_image"
        android:background="@drawable/selector"
        android:onClick="onClickFeature"
        android:text="@string/your_text"
        android:layout_width="wrap_content" />

そしてあなたのセレクターで:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
       <item android:state_focused="true" android:state_pressed="true">
           <shape>
               <solid android:color="#FFFFFF" />
               <stroke android:width="3dp" android:color="#000000" />
               <padding android:bottom="1dp" android:left="1dp" android:right="1dp"
                   android:top="1dp" />
            </shape>
            ...
    </selector>

それは私を助けました

于 2012-07-19T08:50:55.177 に答える