3

Lolipop で ImageView の波紋効果を開発しています。私の描画可能な 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では、以下のようにImageViewにSRCを与えています。

    <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);

選択した画像が表示されていません。

私が間違っているところを助けてください。

4

0 に答える 0