0

我有带有小图像作为缩略图的图像库,目前我已经在 ImageAdapter 类中修复了图像的大小,并且它在 240 x 320 和 320 x 480 的小屏幕中完美可见。

但是图像在大屏幕上显示很小,就像在平板电脑或 Galaxy 中一样,所以我应该如何根据屏幕分辨率更改图像视图大小。

谢谢

4

1 回答 1

0
<GridView
        android:id="@+id/img_grid"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/back_up_layout"
        android:layout_margin="5dp"
        android:choiceMode="multipleChoice"
        android:columnWidth="100dp"
        android:fastScrollEnabled="true"
        android:horizontalSpacing="10dp"
        android:numColumns="4"
        android:stretchMode="columnWidth"
        android:verticalSpacing="10dp"
        android:visibility="gone" />

使用它它会根据屏幕尺寸自动调整我认为它对你来说已经用完了:)

于 2013-10-18T07:41:50.597 回答