Here's my code for the custom dialog box I've implemented
final Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("This is the Title");
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setTypeface(Typeface.createFromAsset(getAssets(),
"fonts/Barkentina.otf"));
I'm easily able to change the font of the text inside dialogue box. But what can I do to change the font of dialog title?