Android: Don't crop covers
This commit is contained in:
parent
60f12e1d4c
commit
1f40efda5d
|
@ -21,7 +21,6 @@ public class PicassoUtils {
|
|||
Picasso.with(imageView.getContext())
|
||||
.load(cover)
|
||||
.fit()
|
||||
.centerCrop()
|
||||
.noFade()
|
||||
.noPlaceholder()
|
||||
.config(Bitmap.Config.ARGB_8888)
|
||||
|
@ -33,7 +32,6 @@ public class PicassoUtils {
|
|||
Picasso.with(imageView.getContext())
|
||||
.load(cover)
|
||||
.fit()
|
||||
.centerCrop()
|
||||
.noFade()
|
||||
.noPlaceholder()
|
||||
.config(Bitmap.Config.ARGB_8888)
|
||||
|
@ -49,7 +47,6 @@ public class PicassoUtils {
|
|||
Picasso.with(imageView.getContext())
|
||||
.load(CoverHelper.buildGameTDBUrl(gameFile, CoverHelper.getRegion(gameFile)))
|
||||
.fit()
|
||||
.centerCrop()
|
||||
.noFade()
|
||||
.noPlaceholder()
|
||||
.config(Bitmap.Config.ARGB_8888)
|
||||
|
@ -68,7 +65,6 @@ public class PicassoUtils {
|
|||
Picasso.with(imageView.getContext())
|
||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "US"))
|
||||
.fit()
|
||||
.centerCrop()
|
||||
.noFade()
|
||||
.noPlaceholder()
|
||||
.config(Bitmap.Config.ARGB_8888)
|
||||
|
@ -87,7 +83,6 @@ public class PicassoUtils {
|
|||
Picasso.with(imageView.getContext())
|
||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "EN"))
|
||||
.fit()
|
||||
.centerCrop()
|
||||
.noFade()
|
||||
.noPlaceholder()
|
||||
.config(Bitmap.Config.ARGB_8888)
|
||||
|
|
Loading…
Reference in New Issue