gpt4 book ai didi

android - 使用 Glide 库从应用程序 Assets 加载图像

转载 作者:太空狗 更新时间:2023-10-29 12:40:56 26 4
gpt4 key购买 nike

我已将我当前的项目从 Picasso 切换到 Glide。但是,我无法设法从应用程序 Assets 中加载图像。这可能吗?

示例代码:

String assetPath = "file:///android_asset/flags/FR.jpg";
Glide.with(getContext())
.load(Uri.parse(assetPath))
.placeholder(missingFlagDrawable)
.centerCrop()
.crossFade()
.into(flag);

我也尝试过 load(String) 方法但没有成功,而且我没有看到加载方法采用例如我可以通过 AssetManager 类获得的 InputStream 或 FileDescriptor。

完全相同的代码在 Picasso 中运行。

Glide 在应用程序的其余部分正常工作并加载漂亮的远程图像。

最佳答案

适用于 Glide.with(xxx).load(xxx).asBitmap()

GitHub issue I had opened at the time 中所述我遇到了那个问题。

关于android - 使用 Glide 库从应用程序 Assets 加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26018967/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com