Android 闪烁动画

2018-07-19 05:37:54来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;

/*闪烁效果*/
public class AlphaAnimationUtil {

    /**
     * 开启View闪烁效果
     * */
    public static void startFlick(View view ){

        if( null == view ){
            return;
        }

        Animation alphaAnimation = new AlphaAnimation( 1.0f, 0.5f );
        alphaAnimation.setDuration( 300 );
        alphaAnimation.setFillBefore(true);
        alphaAnimation.setInterpolator( new LinearInterpolator( ) );
        alphaAnimation.setRepeatCount( Animation.INFINITE );
        alphaAnimation.setRepeatMode( Animation.REVERSE );
        view.startAnimation( alphaAnimation );
    }

    /**
     * 取消View闪烁效果
     * */
    public static void stopFlick( View view ){
        if( null == view ){
            return;
        }
        view.clearAnimation( );
    }
}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java 性能优化 字符串过滤实战

下一篇:第三节:方法