private void translateScaleAnim(ImageView imageView, frameLayout frameLayout, long duration) {
AnimatorSet animatorSet = new AnimatorSet();
//平移动画
ObjectAnimator translationX = ObjectAnimator.ofFloat(imageView, "translationX", 0, frameLayout.getX() - imageView.getX());
ObjectAnimator translationY = ObjectAnimator.ofFloat(imageView, "translationY", 0, frameLayout.getY() - imageView.getY());
//缩放动画
ObjectAnimator scaleX = ObjectAnimator.ofFloat(imageView, "scaleX", 1.0f, frameLayout.getWidth() * 1.0f / imageView.getWidth());
ObjectAnimator scaleY = ObjectAnimator.ofFloat(imageView, "scaleY", 1.0f, frameLayout.getHeight() * 1.0f / imageView.getHeight());
//设置控件缩放中心为控件左上角0,0
imageView.setPivotX(0);
imageView.setPivotY(0);
//设置多个ObjectAnimator
animatorSet.playTogether(translationX, translationY, scaleX, scaleY);
//设置插值器
animatorSet.setInterpolator(new AccelerateInterpolator());
//设置动画时长
animatorSet.setDuration(duration);
//执行动画
animatorSet.start();
}