ObjectAnimator:
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(splash_image, “translationY”,splash_image.getTranslationY(), 500);
ObjectAnimator objectAnimator1= ObjectAnimator.ofFloat(splash_image,“rotation”,0,360);
ObjectAnimator objectAnimator2 = ObjectAnimator.ofFloat(splash_image,“alpha”,0,1,0,1);
ObjectAnimator ObjectAnimator3 = ObjectAnimator.ofFloat(splash_image, “scaleX”, 0, 1);
animatorSet = new AnimatorSet();
animatorSet.play(objectAnimator).with(objectAnimator1).with(objectAnimator2).with(ObjectAnimator3);
animatorSet.setDuration(5000);
animatorSet.start();