Who can answer my bellow question ?
how to change android Progress Dialog message typeface?
Who can answer my bellow question ?
how to change android Progress Dialog message typeface?
Try this way , worked for me :
First in java class you have to import this :
import android.text.Html;
then put this line :
progressDialog.setMessage(Html.fromHtml(getString(R.string.progress_txt)));
instead of this:
progressDialog.setMessage("File downloading");
then in strings.xml write it as this :
<string name="progress_txt">
<![CDATA[
<b><font face="serif">File downloading</font></b>
]]>
</string>
run the app you will find typeface already changed .
Hope this help