私は自分のアプリでGridViewを使用しています:
<GridView
android:id="@+id/main_grid_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="4" >
</GridView>
このGridViewのすべてのセルはImageViewです。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@string/img"
android:scaleType="centerCrop" />
</RelativeLayout>
GridViewのすべてのセルは正方形である必要があり(高さは幅と同じである必要があります)、画像はセルに収まる必要があります。しかし、それは常に長方形のように見えます... GridViewで正方形のセルを実装するにはどうすればよいですか?