我想知道是否有办法同时选择(突出显示)一个ImageButton和TextView。我有一个ImageButton和TextView。我已将它们放在RelativeLayout中并将背景设置为可绘制的选择器xml。但他们并没有一起强调。如果我按下ImageButton按钮,它会单独突出显示,如果我按下布局,它会突出显示而不突出显示ImageButton。你能在这方面帮助我吗?
谢谢。
答案 0 :(得分:2)
我有适合你的解决方案
ImageButton
和'TextView'包装在'LinearLayout'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
文件夹中。 (或与您的设备配置匹配的任何图像资源文件夹)
答案 1 :(得分: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中编写相应的代码,而不是子视图。
答案 2 :(得分: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>
那帮助了我