I must change the fonts of my project to external ones and i\'ve done it almost everywhere, now only it\'s missing the Title\'s of ProgressDialog and ErrorDialeg (the body is ch
for AlertDialog Try This :
((TextView) dialog.findViewById(getResources().getIdentifier(
"alertTitle", "id", "android"))).setTypeface(myRegularFont);
And For AlertDialog Button TypeFace :
((Button) dialog.getButton(AlertDialog.BUTTON_POSITIVE))
.setTypeface(myBoldFont);
for ProgressDialog Try This :
((TextView) prWait.findViewById(getResources().getIdentifier(
"alertTitle", "id", "android"))).setTypeface(myRegularFont);