Is it possible to change ProgressBar style of progress dialog. If yes, then how can I do it?
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();