0
ProgressDialog dialog = ProgressDialog.show(ctx,null,null);
                dialog.getWindow().setGravity(Gravity.CENTER);
                dialog.setContentView(new ProgressBar(ctx));
                dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);

I need to change color of loading circle

Arun Mohan
  • 211
  • 3
  • 12

1 Answers1

0
<style name="DialogStyle" parent="Theme.AppCompat.Light.Dialog">
    <item name="colorPrimary">@color/YOUR_COLOR</item>
</style>

and set to the dialog :

ProgressDialog progressDialog = new ProgressDialog(MainActivity.this, R.style.DialogStyle);
Rachit
  • 3,173
  • 3
  • 28
  • 45