android:ImageView fadingEdge不起作用

时间:2014-02-11 08:03:42

标签: android imageview fading

我的应用程序中有一个ImageView,图像视图的淡化效果在这里不起作用是我的imageView

<ImageView
    android:id="@+id/prevImageview"
    android:layout_width="200dp"
    android:layout_height="100dp"
    android:layout_weight="0.61"
    android:fadingEdge="horizontal|vertical"
    android:requiresFadingEdge="horizontal|vertical"
    android:fadingEdgeLength="20dp"
    android:src="@drawable/landscape_" />

但我看不到任何褪色效果。 任何人都可以告诉我什么是解决方案? 感谢

1 个答案:

答案 0 :(得分:0)

好的,请尝试使用以下代码。

创建名为 fadein.xml

的XML
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="true" >

    <alpha
        android:duration="1000"
        android:fromAlpha="0.0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toAlpha="1.0" />

</set>

然后将其添加到您的图片视图

<ImageView
    android:id="@+id/prevImageview"
    android:layout_width="200dp"
    android:layout_height="100dp"
    style="@drawable/fadein"
    android:src="@drawable/landscape_" />