如何使用 Glide 添加 gif 图标到进度对话框 setIcon?
我正在尝试使用 Glide 将 gif 图标添加到 Progress 对话框 setIcon 中。但出现错误无法解决。这是我的代码。
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 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 gif/图像源文件已经是 .gif 格式,那么您只需编写以下代码即可:
If your source file for gif/image is already in .gif format, then you can simply just write the below code: