'How to add gif icon to Progress Dialog setIcon using Glide?
I'm trying to add gif icon to Progress dialog setIcon using Glide. But getting error not able resolve. This is my code.
private ProgressDialog pDialog;
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setTitle("Loading...");
pDialog.setIcon(Glide.with(this).asGif().load(R.drawable.loading_file));
pDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pDialog.show();
I'm newbie to Glide.
Solution 1:[1]
If your source file for gif/image is already in .gif format, then you can simply just write the below code:
Glide.with(this).load(R.drawable.gif_file).into(imageView);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nilesh Kumar |
