如何使用 Glide 添加 gif 图标到进度对话框 setIcon?

发布于 2025-01-12 04:37:45 字数 374 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥醉 2025-01-19 04:37:45

如果您的 gif/图像源文件已经是 .gif 格式,那么您只需编写以下代码即可:

Glide.with(this).load(R.drawable.gif_file).into(imageView);

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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文