how to change android Progress Dialog message type

2019-05-28 21:04发布

Who can answer my bellow question ?

how to change android Progress Dialog message typeface?

1条回答
迷人小祖宗
2楼-- · 2019-05-28 21:34

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

查看更多
登录 后发表回答