mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
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())
|
Picasso.with(imageView.getContext())
|
||||||
.load(cover)
|
.load(cover)
|
||||||
.fit()
|
.fit()
|
||||||
.centerCrop()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
@ -33,7 +32,6 @@ public class PicassoUtils {
|
|||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(cover)
|
.load(cover)
|
||||||
.fit()
|
.fit()
|
||||||
.centerCrop()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
@ -49,7 +47,6 @@ public class PicassoUtils {
|
|||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(CoverHelper.buildGameTDBUrl(gameFile, CoverHelper.getRegion(gameFile)))
|
.load(CoverHelper.buildGameTDBUrl(gameFile, CoverHelper.getRegion(gameFile)))
|
||||||
.fit()
|
.fit()
|
||||||
.centerCrop()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
@ -68,7 +65,6 @@ public class PicassoUtils {
|
|||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "US"))
|
.load(CoverHelper.buildGameTDBUrl(gameFile, "US"))
|
||||||
.fit()
|
.fit()
|
||||||
.centerCrop()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
@ -87,7 +83,6 @@ public class PicassoUtils {
|
|||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "EN"))
|
.load(CoverHelper.buildGameTDBUrl(gameFile, "EN"))
|
||||||
.fit()
|
.fit()
|
||||||
.centerCrop()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user