I want to do an infinite animation on my textview. But it doesnt work! This is my animation xml
<alpha android:duration="1000" android:fromAlpha="0.0" android:interpolator="@android:anim/accelerate_interpolator" android:toAlpha="1.0" /> <alpha android:startOffset="1000" android:duration="1000" android:fromAlpha="1.0" android:interpolator="@android:anim/accelerate_interpolator" android:toAlpha="0.0" /> and this is my code in my activity
void animation(){ Animation anim1 = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.animationtext); tviPrueba.startAnimation(anim1); anim1.setRepeatCount(Animation.INFINITE); }
setRepeatCount()before setting the animation to the TextView.