我在Android Studio中的gridview中调整图像时遇到问题。基本上我需要每行有2个图像,并且可以在图像上向下滚动TextViews,但是当我向上或向下滚动图像时,会改变位置以便粘在一起。它们的原始格式有不同的尺寸。 这是我的图片布局item_district.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/photo"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:layout_margin="2dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:textSize="10dp"
android:id="@+id/hoverText"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="64dp"
android:id="@+id/hoverId"/>
</RelativeLayout>
GridView布局activity_district.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_district"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="iut.paci.noelcommunity.DistrictActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView3"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editAddress"
android:hint="Your address ..."
/>
<GridView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/grid"
android:numColumns="auto_fit"
android:columnWidth="150dp"
android:stretchMode="columnWidth"
android:gravity="center"/>
</LinearLayout>
</RelativeLayout>
感谢您的帮助!
答案 0 :(得分:0)
您遇到此问题,因为网格项的高度取决于其内容,即imageview和ur图像呈现与您的回收网格项视图不同步。 一个简单的解决方法是修复网格项高度。将高度应用于网格项的相对布局。 建议在gridview中使用相同大小的项目以获得最佳UI。