Android Utililty Methods Font Set

List of utility methods to do Font Set

Description

The list of methods to do Font Set are organized into topic(s).

Method

voidsetAppFont(ViewGroup mContainer, Typeface mFont)
* SETS THE ENTIRE FONT FOR THE ACTIVITY!
if (mContainer == null || mFont == null)
    return;
final int mCount = mContainer.getChildCount();
for (int i = 0; i < mCount; ++i) {
    final View mChild = mContainer.getChildAt(i);
    if (mChild instanceof TextView) {
        ((TextView) mChild).setTypeface(mFont);
    } else if (mChild instanceof ViewGroup) {
...