int basY =100;
int sonY = 10;
CipView cip = new CipView(context);
AnimatorSet1 = new AnimatorSet();
ObjectAnimator starScaleYAnimator = ObjectAnimator.ofFloat(cip, "scaleY", basY, sonY);
starScaleYAnimator.setDuration(350);
starScaleYAnimator.setStartDelay(300);
ObjectAnimator starScaleXAnimator = ObjectAnimator.ofFloat(cip, "scaleX", basY, sonY);
starScaleXAnimator.setDuration(350);
starScaleXAnimator.setStartDelay(300);
AnimatorSet1.playTogether(starScaleYAnimator, starScaleXAnimator);
AnimatorSet1.start();