我需要在该背景上设置背景颜色和图像,我该怎么做?图像是否必须具有透明度?我也需要控制状态:按下、聚焦。
任何帮助将不胜感激
我需要在该背景上设置背景颜色和图像,我该怎么做?图像是否必须具有透明度?我也需要控制状态:按下、聚焦。
任何帮助将不胜感激
创建一个 ImageView(为您的 src 图像使用透明的 .PNG):
资源/布局/yourlayout.xml
<ImageView
android:layout_width=:"wrap_content"
android:layout_height=:"wrap_content"
android:background="@drawable/colorstates"
android:src="@drawable/image" />
res/drawable/colorstates.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/regular"
android:state_checked="true"
android:state_pressed="true" />
<item
android:drawable="@drawable/pressed"
android:state_pressed="true" />
<item
android:drawable="@drawable/pressed"
android:state_checked="true" />
<item
android:drawable="@drawable/regular" />
</selector>
是的,图像需要透明背景,否则它将覆盖背景颜色。使用颜色和图像的background
属性。src
另请查看文档。对于按下状态,使用谷歌!