王学岗属性动画上(八)--不适用动画监听,动画先后执行

不使用监听机制——动画先后顺序的执行

package com.example.seven;

import android.R.animator;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
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;
@SuppressLint("NewApi")
public class MainActivity extends Activity {

    private ImageView iv_zhangxin;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        iv_zhangxin = (ImageView) findViewById(R.id.iv_zhangxin);
        MyClick mc = new MyClick();
        iv_zhangxin.setOnClickListener(mc);
    }

    private class MyClick implements OnClickListener {
        @Override
        public void onClick(View v) {
         ObjectAnimator scaleXAnimator=ObjectAnimator.ofFloat(iv_zhangxin, "scaleX", 1.0f,2.0f);
         ObjectAnimator scaleYAnimator=ObjectAnimator.ofFloat(iv_zhangxin, "scaleY", 1.0f,2.0f);
         ObjectAnimator translationAnimator=ObjectAnimator.ofFloat(iv_zhangxin, "translationX", 1.0f,50.f);
         AnimatorSet animatorSet=new AnimatorSet();
         animatorSet.setDuration(5000);
         //缩放动画执行完毕的时候执行平移动画--不使用listenner
         animatorSet.play(scaleYAnimator).with(scaleXAnimator)
         .before(translationAnimator);
         animatorSet.start();
        }

    }
}

虽然动画的执行有先后同时,但却不使用动画执行的监听

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值