画像が長方形(120 x 58.5)のGirdViewを作成するにはどうすればよいですか?これにより、非正方形のセルになりますか?現在、このXMLレイアウトがある場合、セルは120 x 120であるため、画像の上下に空白があります。各セルの幅は120、高さは58である必要があります。
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/AppsOverviewGrid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnWidth="120dp"
android:numColumns="auto_fit"
android:verticalSpacing="0dp"
android:horizontalSpacing="8dp"
android:stretchMode="columnWidth"
android:gravity="center">
</GridView>
助けてくれてありがとう。