Slide 14
Slide 14 text
AUTOSIZING TEXTVIEW
@Override
protected void onLayout(boolean changed, int left, int top, int right, int
bottom) {
super.onLayout(changed, left, top, right, bottom);
if (mDeferScroll >= 0) {
int curs = mDeferScroll;
mDeferScroll = -1;
bringPointIntoView(Math.min(curs, mText.length()));
}
// Call auto-size after the width and height have been calculated.
autoSizeText();
}
TextView.java > onLayout(c, l, t, r, b)