How to load image from aws with picasso with private access

后端 未结 4 1060
广开言路
广开言路 2021-02-09 00:11

I\'m trying to load image stored on aws S3 into my android app using Picasso but I am getting a blank image with no errors in my logcat and nothing to me from general debugging

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-09 00:40

    Simply use this:

    Picasso.with(getApplicationContext()).load(your_url).noFade().into(imageView);
    

提交回复
热议问题