2

我想知道是否有办法同时选择(单击时突出显示)ImageButton 和 TextView。我有一个 ImageButton 和 TextView。我已将它们放在 RelativeLayout 并将背景设置为可绘制选择器 xml。但它们并没有一起突出显示。如果我按下 ImageButton 按钮,它会单独突出显示,如果我按下布局,它会突出显示而不突出显示 ImageButton。你能在这方面帮助我吗?

谢谢你。

4

3 回答 3

2

我有你的解决方案

  • 将和“TextView”包装ImageButton在“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 个补丁图像是:

背景.9.png -背景.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 回答