Search code examples
androidprogressdialoganimated-gif

How can I set my own ProgressDialog loading image?


I have animated gif image and when i try to use it in ProgressDialog it wont show.

    ProgressDialog dialog = new ProgressDialog(this);
    dialog.setIcon(R.drawable.loading);
    dialog.setTitle("Loading");
    dialog.setMessage("Please wait...");
    dialog.show();

What I`m doing wrong? How can I set my own loading image?


Solution

  • The default loading image is not a gif image it's a combination of two images and then animating it around. view the source code it may help you in res.drawable/progress_large.xml of android.