TextViewExpandableAnimation
TextViewExpandableAnimation copied to clipboard
Expandable TextView With Smooth Transition Animation
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...