画像を全画面表示しようとしていますが、画像の品質が低下しているようです。URL から画像を取得してダウンロードし、画像を表示するとかなり見栄えが悪くなります。取得している画像は高解像度なので、何が問題なのかわかりませんか?
画像を表示しているレイアウトは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/full_screen_banner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name" />
ここにJavaコードがあります:
imageViews.put(imageView, url);
Bitmap bitmap = memoryCache.get(url);
if (bitmap != null)
imageView.setImageBitmap(bitmap);