Change title font of Alert Dialog box

后端 未结 14 1925
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-16 10:57

I want to change the font of the title of Alert Dialog box.

Can anybody tell how can I do it?

14条回答
  •  春和景丽
    2020-12-16 11:24

    You can try Spannable as well.

                SpannableString s = new SpannableString("My App");
                s.setSpan(new TypefaceSpan(this, "font.otf"), 0, s.length(),
                        Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
                s.setSpan(new RelativeSizeSpan(1.3f), 0,s.length(), 0);
                builder.setTitle(s)
    

提交回复
热议问题