gpt4 book ai didi

java - 如何在Android中实现这种类型的GridView?

转载 作者:太空宇宙 更新时间:2023-11-04 13:08:26 25 4
gpt4 key购买 nike

我实现了如下所示的 GridView:

enter image description here

但是当我旋转手机时,会发生以下情况:

enter image description here

我希望图像在纵向模式下保持原样。我不希望 View 之间有间距。

GridView :

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f0f0f0"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">

<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:columnWidth="170dp"
android:drawSelectorOnTop="true"
android:focusable="true"
android:gravity="center"
android:numColumns="auto_fit"
android:stretchMode="columnWidth" />
</FrameLayout>

网格项目:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/blue"
android:orientation="vertical">

<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="200dp" />

</LinearLayout>

这里我正在调整适配器中的图像大小,如下所示:

holder = new ViewHolder();
holder.image = (ImageView) row.findViewById(R.id.image);
ImageItem item = data.get(position);
holder.image.setImageBitmap(Bitmap.createScaledBitmap(item.getImage(), 180, 200, true));

我还希望图像能够正确调整大小,而不会出现任何模糊等情况。

最佳答案

您已经给出了android:columnWidth="170dp",并且在griditem.xml中您已经给出了固定高度,这就是为什么会发生这种情况。

关于java - 如何在Android中实现这种类型的GridView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34200132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com