gpt4 book ai didi

android - 无法解析方法 setImageBitmap

转载 作者:行者123 更新时间:2023-11-29 17:26:08 25 4
gpt4 key购买 nike

我想显示从 MySQL 检索到的图像到 android imageView(image),但是获取 cannot resolve method setImageBitmap error .

  private void showStaff(String json) {
try {
JSONObject jsonObject = new JSONObject(json);
JSONArray result = jsonObject.getJSONArray(Config.TAG_JSON_ARRAY);
JSONObject c = result.getJSONObject(0);
String type = c.getString(Config.TAG_TYPE).trim();
RetrieveType(type);
String Description = c.getString(Config.TAG_DESCRIPTION).trim();
String Amount=c.getString(Config.TAG_AMOUNT).trim();
String image=c.getString(Config.TAG_IMAGE);
byte[] data= Base64.decode(image,0);
Bitmap b=BitmapFactory.decodeByteArray(data,0,data.length);
image.setImageBitmap(b); // error
description.setText(Description);
amount.setText(Amount);
// noH.setText(hours);

} catch (JSONException e) {
e.printStackTrace();
}

我该如何解决这个问题?

最佳答案

这里的图片是一个字符串,所以没有方法 setImageBitmap 字符串,你需要和 ImageView 调用 setImageBitmap

关于android - 无法解析方法 setImageBitmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34576795/

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