Android图像视图相互淡出/淡出淡出

时间:2012-08-16 14:27:09

标签: android animation alpha

我有两个ImageViews,我尝试淡出一个并淡入另一个。

问题是他们应该“互相依赖”。

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="124dp"
android:layout_height="94dp"
android:src="@drawable/dgreen"
android:visibility="visible" />

<ImageView
android:id="@+id/imageView"
android:layout_width="124dp"
android:layout_height="94dp"
android:src="@drawable/blank" />
</RelativeLayout>

Animation animation = AnimationUtils.loadAnimation(this.getApplicationContext(),R.anim.fade_out );
animation.setFillAfter(true);
Animation animation1 = AnimationUtils.loadAnimation(this.getApplicationContext(),R.anim.fade_in );
animation1.setFillAfter(true);
iV.startAnimation(animation);

iV1.startAnimation(animation1);

但是第一张图片视图下面的图片并没有“发光”。

编辑: 这是我的淡入/淡出代码:

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="1.0" android:toAlpha="0.0"
android:duration="1000" />

<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="0.1" android:toAlpha="1.0"
android:duration="1000" />

我使用alpha变换。

1 个答案:

答案 0 :(得分:0)

您可以使用Framelayout并使用here之类的重力进行播放并应用here等动画