欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

星空数独开发总结(三):背景星星呼吸

程序员文章站 2022-06-06 14:41:33
...

星空数独开发总结(三):背景星星呼吸

暂时不管关卡的滑动之类的问题,先来了解一下两方面

1,背景星星呼吸:

这个功能其实相当简单,因为有公司给的相关图片,只要设置后面星星的alpha值就行了

protected  void showAnimotion(){
        ImageView bgstar = findViewById(R.id.bgstar);
        //获取背景图片对象
        AlphaAnimation animator = new AlphaAnimation(0.5f, 1.0f);
        //实例化透明度动画对象
        animator.setDuration(1500);
        //设置动画持续时间
        animator.setFillBefore(true);
        //设置动画结束回到开始状态
        animator.setRepeatMode(AlphaAnimation.REVERSE);
        //设置动画重复模式,这里是翻转,即透明度为50%-->100%-->50%
        animator.setRepeatCount(ValueAnimator.INFINITE);
        //设置重复次数,无限循环
        bgstar.startAnimation(animator);
        //开始动画
   
    }
相关标签: Android alpha