伙计们,我有一个如下的网格视图
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" />