私は単純なグリッドビューを持っています。要素の高さが異なります。たとえば、行には1つの小さな要素と1つの大きな要素があり、次の行は小さな要素に整列し、大きな要素の一部は2番目の行の下にあります。gridview の各行の高さを行の最大要素の高さに設定するにはどうすればよいですか??
私のグリッドビュー
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/new_small_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:numColumns="2"
android:verticalSpacing="3dp"
android:horizontalSpacing="3dp"
android:stretchMode="columnWidth"
android:gravity="center"
android:cacheColorHint="@android:color/transparent"
/>