Change style of ProgressDialog

前端 未结 1 1548
天涯浪人
天涯浪人 2021-02-07 19:40

Is it possible to change ProgressBar style of progress dialog. If yes, then how can I do it?

1条回答
  •  情书的邮戳
    2021-02-07 20:17

    You can style your progress dialog this way: create a drawable file with your ring shape (circular_progress_dialog.xml)

    
    
    
        
    
    
    

    one to style your progress bar

     
    

    Notice your "android:indeterminateDrawable" property

    Yout can create an instance of ProgressDialog and add your style with

    // create progressDialog
    final ProgressDialog myProgressDialog = new  ProgressDialog(MyActivity.this);
    myProgressDialog.setProgressStyle(R.style.ProgressBar)
    myProgressDialog.show();
    

    0 讨论(0)
提交回复
热议问题