Change title font of Alert Dialog box

后端 未结 14 1956
佛祖请我去吃肉
佛祖请我去吃肉 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:39

    Do like this :

    Dialog dialog = new Dialog(ActivityName.this);
    dialog.setContentView(R.layout.dialog_name);
    dialog.setCancelable(true);
    dialog.findViewById(R.id.text).setTypeface(Typeface.createFromAsset(getAssets(), "font.ttf"));
    

    Have your font.ttf file in the assets folder and use it like above

提交回复
热议问题