HTextView
HTextView copied to clipboard
Does not work
It is also not working for me.. weird and sad :(
I tried to perform scale animation to the list of texts.
hTextView = findViewById(R.id.textViewAnimate); hTextView.setAnimationListener(this); hTextView.animateText(animateWords[animateWordIndex]);
And in the listener, On Animation End Listener, I tried to move to next in the list of the words.
@Override public void onAnimationEnd(HTextView hTextView) { animateWordIndex++; if(animateWordIndex == animateWords.length) { animateWordIndex = 0; } hTextView.animateText(animateWords[animateWordIndex]); }
But I always get the last word simply displayed in the TextView without any animation.