1

我有一个 GridView,我用它来显示一行 4 个图像,每个图像都是 200 x 200 像素。这是布局xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <GridView
        android:id="@+id/myGridView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:numColumns="4" >
    </GridView>

</RelativeLayout>

当我在这里运行我的应用程序时,图像如下所示:

带有 4 张图像的网格视图

如您所见,图像正在缩放(缩小)以适合屏幕。

如何使图像垂直和水平拉伸以保持正确的纵横比?

请注意,我正在使用适配器来绘制图像:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    ImageView imageView;
    if (convertView == null) {
        imageView = new ImageView(context);
    } else {
        imageView = (ImageView) convertView;
    }
    imageView.setBackgroundResource(imageIds[position]);
    return imageView;
}
4

1 回答 1

3

我在上次弱中遇到了同样的问题。使用我的图像视图类来解决这个问题。

public class iv_autoSizedImageView extends ImageView {

    public iv_autoSizedImageView(Context context, AttributeSet attrs) {
        super(context, attrs);

    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

        // TODO Auto-generated method stub
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        try {

            getLayoutParams().height = getMeasuredWidth();

        } catch (Exception e) {
            // TODO: handle exception

        }

    }

}

布局.xml

 <com.sample.test.iv_autoSizedImageView
            android:id="@+id/IV_NEWS_IMAGE"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
于 2013-03-16T03:55:23.083 回答