oom:試試.resize(width,height) .memoryPolicy(NO_CACHE, NO_STORE)
拉伸變形:試試.resize(width,height) .centerCrop()
總結:這樣用是沒問題的
Picasso.with(mContext)
.load("file://" + path)
.resize(720, 720)
.centerCrop()
.memoryPolicy(NO_CACHE, NO_STORE)
.into(holder.mIvThumbnail);