how to change android Progress Dialog message type

2019-05-28 20:55发布

问题:

Who can answer my bellow question ?

how to change android Progress Dialog message typeface?

回答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