我想在状态为“激活”时更改 View 的背景,并且我想保留?attr:selectableItemBackground
的effects(波纹)。是否可以扩展或组合?attr:selectableItemBackground
的选择器?
最佳答案
您可以使用 LayerDrawable
以便在激活状态颜色上绘制可绘制的波纹效果(?attr:selectableItemBackground
)。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<selector>
<item android:state_activated="true">
<color android:color="?attr/colorPrimary"/>
</item>
<item>
<color android:color="@android:color/transparent"/>
</item>
</selector>
</item>
<item android:drawable="?attr/selectableItemBackground"/>
</layer-list>
编辑:
由于不可能在API 21之前的XML可绘制对象中使用主题属性,因此最好将波纹效果可绘制对象作为前景可绘制对象,而将激活的颜色选择器可绘制对象作为背景可绘制对象。
<View
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/yourView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:foreground="?attr/selectableItemBackground"
android:background="@drawable/activated_color_selector">
使用
res/drawable/activated_color_selector.xml
包含:<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true">
<!-- Can't use the ?attr/colorPrimary before API 21 -->
<color android:color="@color/primaryColor"/>
</item>
<item>
<color android:color="@android:color/transparent"/>
</item>
</selector>