HTextView icon indicating copy to clipboard operation
HTextView copied to clipboard

Does not work

Open bryan-ibrahim opened this issue 5 years ago • 2 comments

bryan-ibrahim avatar Dec 10 '19 18:12 bryan-ibrahim

It is also not working for me.. weird and sad :(

jansvanda avatar Dec 29 '19 13:12 jansvanda

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.

azehari avatar Apr 12 '20 09:04 azehari