0

我的 android 应用程序大量使用自定义图像,为它们中的每一个设计“效果”图像将是一项巨大的工作,例如clicking效果和其他图像。

我正在寻找一个简单的解决方案。例如,当我点击一个可点击的组件时,它看起来是灰色的,当我的手指离开时,它会变成原来的颜色。

是否可以?

4

1 回答 1

3

使用 xml 选择器。这样就行了!

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          android:drawable="@drawable/image_pressed" /> <!-- pressed/ clicked -->
    <item android:state_focused="true"
          android:drawable="@drawable/image_focused" /> <!-- focused -->
    <item android:state_hovered="true"
          android:drawable="@drawable/image_focused" /> <!-- hovered -->
    <item android:drawable="@drawable/image_normal" /> <!-- default / after release-->
</selector>

更多检查在这里

于 2012-12-11T07:55:16.723 回答