gpt4 book ai didi

android - 如何从 byte[] 创建一个 Drawable? (安卓)

转载 作者:行者123 更新时间:2023-11-30 05:05:56 26 4
gpt4 key购买 nike

我有一个字节数组,我需要将其转换为 Android Drawable。我如何执行此转换?

这是我尝试过但没有成功的方法:

byte[] b = getByteArray();
ByteArrayInputStream is = new ByteArrayInputStream(b);
Drawable drw = Drawable.createFromStream(is, "articleImage");

drw 始终为空!

编辑:

我的 byte[] 实际上已损坏/不完整,这就是问题所在。

最佳答案

如果你的 byte[] b 包含图像数据那么你也可以试试这个,

 Drawable image = new BitmapDrawable(BitmapFactory.decodeByteArray(b, 0, b.length));

编辑

不带 Resources 的 BitmapDrawable 构造函数现已弃用,因此请改用它:

Drawable image = new BitmapDrawable(getResources(),BitmapFactory.decodeByteArray(b, 0, b.length));

试试这个,让我知道会发生什么,

关于android - 如何从 byte[] 创建一个 Drawable? (安卓),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54603696/

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