Animation Slide In/Out
//In
ObjectAnimator anim = ObjectAnimator.ofFloat(text, "ScaleX", 1, 0);
anim.setDuration(2000);
anim.start();
//Out
ObjectAnimator anim = ObjectAnimator.ofFloat(text, "ScaleX", 0, 1);
anim.setDuration(2000);
anim.start();
Posting Lebih Baru
Posting Lama
Beranda