我试图将选择器设置为包含在工具栏中的按钮。选择器在设置为工具栏外部的按钮时正在工作。有什么帮助吗?
工具栏
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/light_red"
android:elevation="4dp"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dp">
<ImageButton
android:id="@+id/btnSync"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/sync"
android:layout_centerVertical="true"
android:layout_margin="10dp"
android:layout_alignParentRight="true"/>
</RelativeLayout>
</android.support.v7.widget.Toolbar>
选择
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/sinchronize_q" android:state_focused="true" />
<item android:drawable="@drawable/sinchronize" />
</selector>
答案 0 :(得分:1)
问题在于你的绘图,特别是这部分
android:state_focused="true"
您的ImageButton没有获得焦点,因为它是由其父级或某些EditText视图拍摄的。一般情况下, state_focused 在drawables中经常使用, 将其更改为 state_pressed ,它将起作用,所以这就是你需要的
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/sinchronize_q"
android:state_pressed="true"/>
<item android:drawable="@android:drawable/sinchronize"/>
如果你想确保你的项目没有得到焦点,你可以将 android:focusableInTouchMode =“true”添加到你的ImageButton