所以我希望能夠從我的S3存儲搶我的圖片和(使用滑行或畢加索),其圖像加載到ImageView的。 (我不想將該圖像下載到我的手機中)。如何將圖片從aws s3下載到imageview?
目前,我有這樣的:
downloadButton = (Button) findViewById(R.id.cognito_s3DownloadButton);
downloadButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
File file = new File(Environment.getExternalStorageDirectory().toString() + "/" + "fromAWS");
observer = transferUtility.download("zivit-card-images","image1", file);
Glide.with(getBaseContext()).load("image in byes? or url?").centerCrop().into(myImageView);
}
});
再次,我如何從S3檢索圖像並將其插入到一個ImageView的?
您傳遞文件參考'transferUtility.download()',那該文件到傳輸工具將在S3對象下載到。 – Karthik