列の数が設定されたグリッドビューがあります(たとえば、5)。ただし、イメージ アダプターに 6 つのイメージを設定すると、6 番目のイメージが自動的に新しい行に移動し、最初の列が割り当てられます。私が探している動作は、新しい行の余分な子要素を自動的に (またはプログラムによって何らかの方法で) 中央に配置することです...たとえば、次のように:
A B C D E
F
グリッドビュー用に私が持っている XML は次のとおりです。
<GridView android:id="@+id/gridview" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:columnWidth="10dip"
android:numColumns="10" android:horizontalSpacing="10dip"
android:stretchMode="columnWidth"
xmlns:android="http://schemas.android.com/apk/res/android"
android:verticalSpacing="3dp"
android:layout_below="@+id/TopLayout"
android:layout_gravity="center"></GridView>