Android - изменить размер изображения в галерее в зависимости от разрешения устройства - PullRequest
3 голосов
/ 18 января 2011

У меня есть приложение для Android, которое извлекает изображения из Интернета.Однако, когда я установил:

<supports-screens android:anyDensity="true" />

галерея, кажется, установлена ​​на минимальное поддерживаемое разрешение.

Вот определение макета галереи:

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout android:id="@+id/GalleryLayout"
              android:layout_width="fill_parent" 
              android:layout_height="fill_parent"
              xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:background="#000000"
              >

<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
         android:id="@+id/gallery"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:layout_gravity="center"
         android:spacing="1dip"
         android:gravity="center_vertical|center_horizontal|center"
/>

</LinearLayout>

иgetView class:

ImageView i = new ImageView(mContext);
i.setImageDrawable(drawablesFromUrl[position]);
i.setLayoutParams(new Gallery.LayoutParams(400, 300));
i.setScaleType(ImageView.ScaleType.FIT_XY);
i.setBackgroundResource(mGalleryItemBackground);

Есть ли способ определить используемое разрешение и затем изменить размеры изображений в галерее, чтобы они растягивались на ширину экрана?

1 Ответ

7 голосов
/ 18 января 2011

попробуйте

i.setAdjustViewBounds(true);

также, вы не должны использовать жестко запрограммированные значения пикселей (в i.setLayoutParams(new Gallery.LayoutParams(400, 300));)

использовать

int width = (int) getResources().getDimension(R.dimen.image_width)
int height = (int) getResources().getDimension(R.dimen.image_height)
i.setLayoutParams(new Gallery.LayoutParams(width, height));

и в некоторых XML-файлах(под res / values)

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <dimen name="image_height">400dp</dimen>
  <dimen name="image_width">300dp</dimen>
</resources>
...