みんな私は以下のようなグリッドビューを持っています
view 1 view 2 view 3
view 4 view 5 view 6
......
以下のコンポーネントを使用してこのグリッド ビューを作成しました
android:numColumns="auto_fit"
android:columnWidth="90dp"
android:stretchMode="columnWidth"
下部に単一のグリッドが必要です
view 1 view 2 view 3
view 4 view 5 view 6 (FIG 2)
V I E W 7 (completely)
上記の3つのコンポーネントすべてで遊んだのですが、次のような単一のグリッド行が得られました
V I E W 1
V I E W 2..
しかし、私は(図2)として必要です
以下はxmlです
<FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_below="@+id/EmptyFonesLayout" >
<GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="wrap_content" android:verticalSpacing="4dp" android:horizontalSpacing="4dp" android:numColumns="auto_fit" android:columnWidth="90dp" android:stretchMode="columnWidth" android:background="#ffffff"
android:textFilterEnabled="true" />