TextViewExpandableAnimation icon indicating copy to clipboard operation
TextViewExpandableAnimation copied to clipboard

Expandable TextView With Smooth Transition Animation

Results 2 TextViewExpandableAnimation issues
Sort by recently updated
recently updated
newest added

Hi, I've upload your code to jcenter, and give little modification in my git, check it out : https://github.com/adisiji/ExpandableTextView Do you mind ? Thank you

There's a memory leak in `setText()`. You need to add the following line in `onPreDraw()`: ``` public void setText(CharSequence charSequence) { textContent = charSequence; textView.setText(charSequence.toString()); textView.getViewTreeObserver().addOnPreDrawListener(new OnPreDrawListener() { @Override public...