mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 07:54:41 +02:00
Android: Fix cover stretching
This commit is contained in:
@@ -21,9 +21,10 @@ public class PicassoUtils
|
|||||||
{
|
{
|
||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(cover)
|
.load(cover)
|
||||||
.fit()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
|
.fit()
|
||||||
|
.centerInside()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
.error(R.drawable.no_banner)
|
.error(R.drawable.no_banner)
|
||||||
.into(imageView);
|
.into(imageView);
|
||||||
@@ -32,9 +33,10 @@ public class PicassoUtils
|
|||||||
{
|
{
|
||||||
Picasso.with(imageView.getContext())
|
Picasso.with(imageView.getContext())
|
||||||
.load(cover)
|
.load(cover)
|
||||||
.fit()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
|
.fit()
|
||||||
|
.centerInside()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
.error(R.drawable.no_banner)
|
.error(R.drawable.no_banner)
|
||||||
.into(imageView);
|
.into(imageView);
|
||||||
@@ -47,9 +49,10 @@ 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()
|
|
||||||
.noFade()
|
.noFade()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
|
.fit()
|
||||||
|
.centerInside()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
.error(R.drawable.no_banner)
|
.error(R.drawable.no_banner)
|
||||||
.into(imageView, new Callback()
|
.into(imageView, new Callback()
|
||||||
@@ -68,6 +71,8 @@ public class PicassoUtils
|
|||||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "US"))
|
.load(CoverHelper.buildGameTDBUrl(gameFile, "US"))
|
||||||
.fit()
|
.fit()
|
||||||
.noFade()
|
.noFade()
|
||||||
|
.fit()
|
||||||
|
.centerInside()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
.error(R.drawable.no_banner)
|
.error(R.drawable.no_banner)
|
||||||
@@ -88,6 +93,8 @@ public class PicassoUtils
|
|||||||
.load(CoverHelper.buildGameTDBUrl(gameFile, "EN"))
|
.load(CoverHelper.buildGameTDBUrl(gameFile, "EN"))
|
||||||
.fit()
|
.fit()
|
||||||
.noFade()
|
.noFade()
|
||||||
|
.fit()
|
||||||
|
.centerInside()
|
||||||
.noPlaceholder()
|
.noPlaceholder()
|
||||||
.config(Bitmap.Config.ARGB_8888)
|
.config(Bitmap.Config.ARGB_8888)
|
||||||
.error(R.drawable.no_banner)
|
.error(R.drawable.no_banner)
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
tools:layout_width="160dp"
|
tools:layout_width="160dp"
|
||||||
android:layout_height="368dp"
|
android:layout_height="330dp"
|
||||||
android:transitionName="card_game"
|
android:transitionName="card_game"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
|
Reference in New Issue
Block a user