zoukankan      html  css  js  c++  java
  • 利用代码定义动画

                  TextView tv = (TextView) findViewById(R.id.tv);
    
                    /**
                     * Scale动画
                     */
                    ScaleAnimation scaleAnim = new ScaleAnimation(0.0f, 1.4f, 0.0f, 1.4f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                    scaleAnim.setDuration(700);
    
                    /**
                     * alpha动画
                     */
                    AlphaAnimation alphaAnim = new AlphaAnimation(1.0f, 0.1f);
                    alphaAnim.setDuration(3000);
                    alphaAnim.setFillBefore(true);
    
                    /**
                     * RotateAnimation
                     */
                    RotateAnimation rotateAnim = new RotateAnimation(0, -650, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                    rotateAnim.setDuration(3000);
                    rotateAnim.setFillAfter(true);
    
                    /**
                     * TranslateAnimation
                     */
                    TranslateAnimation translateAnim = new TranslateAnimation(Animation.ABSOLUTE, 0, Animation.ABSOLUTE, -80,
                            Animation.ABSOLUTE, 0, Animation.ABSOLUTE, -80);
                    translateAnim.setDuration(2000);
                    translateAnim.setFillBefore(true);
    
    
                    /**
                     * AnimationSet
                     */
                    Animation alpha_Anim = new AlphaAnimation(1.0f, 0.1f);
                    Animation scale_Anim = new ScaleAnimation(0.0f, 1.4f, 0.0f, 1.4f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                    Animation rotate_Anim = new RotateAnimation(0, 720, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
    
                    AnimationSet setAnim = new AnimationSet(true);
                    setAnim.addAnimation(alpha_Anim);
                    setAnim.addAnimation(scale_Anim);
                    setAnim.addAnimation(rotate_Anim);
    
                    setAnim.setDuration(3000);
                    setAnim.setFillAfter(true);
    
    
                    tv.startAnimation(setAnim);

    动画监听:

        private void AnimationListener(final TextView tv) {
            RotateAnimation rotateAnim = new RotateAnimation(0, -650, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
            rotateAnim.setDuration(3000);
            rotateAnim.setFillAfter(true);
    
    
            ScaleAnimation scaleAnim = new ScaleAnimation(0.0f, 1.4f, 0.0f, 1.4f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
            scaleAnim.setDuration(700);
            scaleAnim.setAnimationListener(new Animation.AnimationListener() {
                public void onAnimationStart(Animation animation) {
              //动画开始回调
                }
    
                public void onAnimationEnd(Animation animation) {
                    tv.startAnimation(rotateAnim);
             //动画结束回调
                }
    
                public void onAnimationRepeat(Animation animation) {
             //动画重复回调
                }
            });
    
            tv.startAnimation(scaleAnim);
    
        }
  • 相关阅读:
    商品房买卖合同备案
    收房注意事项!--经典!
    商河水木清华业主告媒体书
    商河水木清华全体业主告开发商书
    商河县水木清华全体业主给县委县府的一封信
    大家不要在水木清华买房子了,我的都一年了,还没交房!
    呼吁所有商河水木清华业主拒绝不合理的交房流程
    说说无耻的商河水木清华开发商2013"交房
    拒绝无效的“交房”写给所有商河水木清华业主
    iframe 里的高度适应的问题
  • 原文地址:https://www.cnblogs.com/loaderman/p/10194818.html
Copyright © 2011-2022 走看看