2

Who can answer my bellow question ?

how to change android Progress Dialog message typeface?

Mohammad Abu Hmead
  • 621
  • 2
  • 7
  • 18

1 Answers1

1

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

Android Stack
  • 4,314
  • 6
  • 31
  • 49