ImageView“state_select”的Android Ripple效果不起作用

时间:2015-06-22 09:27:33

标签: android ripple xml-drawable rippledrawable

我正在为Lolipop中的ImageView开发Ripple效果。我的可绘制XML如下所示。

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:color="?android:colorControlHighlight"
    tools:targetApi="21">
    <item android:state_selected="true" android:drawable="@drawable/image_selected"/>
    <item android:state_pressed="true" android:drawable="@drawable/image_selected"/>
    <item android:drawable="@drawable/image_unselected"/>
</ripple>

在XML中,我将SRC提供给ImageView,如下所示。

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:id="@+id/iv_image"
        android:scaleType="fitXY"
        android:src="@drawable/bg_tab_item" />

我的问题出在Activity.java中,如果我提到

ImageView.setSelected(true);

未显示所选图像。

请帮助我在哪里做错了。

0 个答案:

没有答案