Prevent bitmap too large to be uploaded into a texture android

后端 未结 6 1956
走了就别回头了
走了就别回头了 2021-01-17 10:02

I need to display original image in full screen in gallery form. For thumb it will be work perfectly and when I try to display that image in full screen with original source

6条回答
  •  没有蜡笔的小新
    2021-01-17 10:21

    I came across the same problem and came up with a one liner solution for this problem here:

    Picasso.with(context).load(new File(path/to/File)).fit().centerCrop().into(imageView);
    

提交回复
热议问题