fade_out.xmlandroid:fromAlpha="1.0"android:toAlpha="0.0"..._android 点击图片缩放动画,然后在跳转到下一页demo">
当前位置:   article > 正文

android缩放动画背景图片,Android更改背景图像,淡入/淡出动画_android_开发99编程知识库...

android 点击图片缩放动画,然后在跳转到下一页demo

你需要把这些代码。

首先,你必须使两个xml文件在&中淡出,像这样。

fade_in.xml<?xml version="1.0" encoding="utf-8"?>

android:fromAlpha="0.0"

android:toAlpha="1.0"

android:fillAfter="true"

android:duration="2000"

/>

fade_out.xml<?xml version="1.0" encoding="utf-8"?>

android:fromAlpha="1.0"

android:toAlpha="0.0"

android:fillAfter="true"

android:duration="2000"

/>

其次,你必须像下面那样运行imageView的动画,当你完成fadein你还必须设置AnimationListener来改变淡出。Animation fadeIn = AnimationUtils.loadAnimation(YourActivity.this, R.anim.fade_in);

imageView.startAnimation(fadeIn);

fadeIn.setAnimationListener(new Animation.AnimationListener() {

@Override

public void onAnimationStart(Animation animation) {

}

@Override

public void onAnimationEnd(Animation animation) {

Animation fadeOut = AnimationUtils.loadAnimation(YourActivity.this, R.anim.fade_out);

imageView.startAnimation(fadeOut);

}

@Override

public void onAnimationRepeat(Animation animation) {

}

});

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/660256
推荐阅读
相关标签
  

闽ICP备14008679号