I'm wondering if there is a way to iterate through all the views in a layout and change the typeface of all the views which have text (i.e. TextView, CheckBox, EditText, etc). I have a layout which I call setContentView() and was wondering if there is an easy way to do this.

I could go through and manually do it using findViewById() but I'd rather have an easy way to iterate through them all instead.

Thanks, -clark-

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Maybe this will get you started:

protected void changeFonts(ViewGroup root) {

        Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/comicsans.ttf");

        for(int i = 0; i <root.getChildCount(); i++) {
                View v = root.getChildAt(i);
                if(v instanceof TextView ) {
                        ((TextView)v).setTypeface(tf);
                } else if(v instanceof Button) {
                        ((Button)v).setTypeface(tf);
                } else if(v instanceof EditText) {
                        ((EditText)v).setTypeface(tf);
                } else if(v instanceof ViewGroup) {
                        changeFonts((ViewGroup)v);
                }
        }

    }
link|improve this answer
That did the trick, thank you! I had a layout with nested layouts and I simply called changeFonts() recursively on those and it worked out great. – clark Sep 9 '11 at 21:05
Glad, I could help :) – evilone Sep 9 '11 at 21:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.