Android: Get/retrieve Progressdialog Title's Id And Dialegerror Title's Id
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 changed
Solution 1:
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);
Post a Comment for "Android: Get/retrieve Progressdialog Title's Id And Dialegerror Title's Id"