How to change the ProgressDialog Message font size in android programmatically?

前端 未结 3 2085
谎友^
谎友^ 2021-02-06 18:00

I have used progressDialog in my android application and i have used code as

ProgressDialog progressDialog = new ProgressDialog(this);
        progressDialog.se         


        
3条回答
  •  北恋
    北恋 (楼主)
    2021-02-06 18:25

    private ProgressDialog Dialog = new ProgressDialog(currentfile.this);
    
    Dialog.setMessage(Html.fromHtml(""
                        + "Downloading ..." + ""));
    
    Dialog.show();
    

提交回复
热议问题