王学岗的属性动画上(三)-------多个动画同时执行

布局文件只有一个,不再列出

package com.example.propertyOfGang;

import android.animation.ObjectAnimator;
import android.animation.PropertyValuesHolder;
import android.animation.ValueAnimator;
import android.animation.ValueAnimator.AnimatorUpdateListener;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;

/**
 * @author acer
 *本案例————多个动画同时执行
 */
@SuppressLint("NewApi")
// 新的API,支持的最低版本是11

public class MainActivity extends Activity implements OnClickListener {

    private ImageView iv_zhangxin;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        iv_zhangxin = (ImageView) findViewById(R.id.imageView1);
        iv_zhangxin.setOnClickListener(this);
        //可以在这里查看有什么属性
        //iv_zhangxin.setRotationX(rotationX);
        //iv_zhangxin.setAlpha(alpha);
        //iv_zhangxin.setTranslationX(translationX);

    }

    @Override
    public void onClick(View v) {
        //缩放动画
        PropertyValuesHolder scaleX=PropertyValuesHolder.ofFloat("scaleX", 0.0f,1.0f);
        PropertyValuesHolder scaley=PropertyValuesHolder.ofFloat("scaleY", 0.0f,1.0f);
        //values 属性集:A set of PropertyValuesHolder objects whose values will be animated between over time.
         ObjectAnimator objectAnimator= ObjectAnimator.ofPropertyValuesHolder(v, scaleX,scaley);
         objectAnimator.setDuration(2000);
         objectAnimator.start();
    }

}

使用PropertyValuesHolder 执行多个动画,以后我们还会有多个动画的执行,但用的是另一种方法。

你可能感兴趣的:(android)