gpt4 book ai didi

android - 从解析中检索图像文件 - android

转载 作者:太空宇宙 更新时间:2023-11-03 11:31:57 24 4
gpt4 key购买 nike

我正在尝试检索我从我的应用程序上传的图像:

intent = getIntent();
String id = intent.getStringExtra("id");
ParseQuery<ParseObject> query = ParseQuery.getQuery("Items");
query.getInBackground(id, new GetCallback<ParseObject>()
{
@Override
public void done(ParseObject object, ParseException e)
{
if (e == null)
{
setTitle(object.getString("name"));
textPlatform.setText(object.getString("platform"));
textPrice.setText(String.valueOf(object.getDouble("price")));
textDelivery.setText(String.valueOf(object.getDouble("delivery")));
textLocation.setText(object.getString("location"));
textCondition.setText(object.getString("condition"));
textSeller.setText(object.getString("seller"));
ParseFile applicantResume = (ParseFile) object.get("image");
applicantResume.getDataInBackground(new GetDataCallback()
{
public void done(byte[] data, ParseException e)
{
if (e == null)
{
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
imgItem.setImageBitmap(bmp);
}
else
{
e.printStackTrace();
}
}
});
} else
{
e.printStackTrace();
}
}

});

我可以成功检索其他项目,但不是文件(我知道它存在并且在“图像”列下)。

提前致谢

最佳答案

我是这样做的:我使用 getParseFile 方法从解析中获取文件:

ParseFile postImage = object.getParseFile(ParseConstants.PARSE_KEY_FILE);
String imageUrl = postImage.getUrl() ;//live url
Uri imageUri = Uri.parse(imageUrl);

然后我使用 Picasso 来显示图像:

Picasso.with(context).load(imageUri.toString()).into(mPostImage);

关于android - 从解析中检索图像文件 - android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24288466/

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