公告
财富商城
积分规则
提问
发文
2019-05-28 21:04发布
等我变得足够好
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
最多设置5个标签!
Try this way , worked for me :
First in java class you have to import this :
then put this line :
instead of this:
then in strings.xml write it as this :
run the app you will find typeface already changed .
Hope this help