We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
It is also not working for me.. weird and sad :(
Sorry, something went wrong.
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.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: