How to change text of animation without stopping the animation
I want to change text of animation without stopping animation. It's possible to do it with animationlist class and set new text, but how can I do it without stop first animation.
public void run() {
if(count==10){
count=0;
timer.cancel();
textView2.setText("Allah");
}
}