So basically what I need is that I need to update whole application TextView's font size and I don't want to create one by one variable for all TextView.
I try to extend TextView but seem can't find any method that is called everytime TextView appears on screen.
Tried this one:
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
}
That method seems only called when TextView first appears on screen or I call setTextSize.
Any idea?