GridView显示部分图像按钮

时间:2013-09-04 06:04:26

标签: gridview

在我的应用程序中,scrollview工作正常,但所有gridview只显示部分imgebutons。 我必须在每个网格中显示6个图像按钮和textview.3网格waching罚款但低于它只显示部分3个按钮..请指导我做错了什么。     

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <RelativeLayout
            android:id="@+id/relativeLayout2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <ImageView
                android:id="@+id/firstLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/latest_ringtone" >
            </ImageView>

            <GridView
                android:id="@+id/grid1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/firstLabel"
                android:gravity="center"
                android:numColumns="3"
                android:stretchMode="columnWidth" >
            </GridView>
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/relativeLayout3"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginTop="5dp"
            android:gravity="right" >

            <ImageView
                android:id="@+id/scndLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/topofmonth" >
            </ImageView>

            <GridView
                android:id="@+id/grid2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/scndLabel"
                android:gravity="center"
                android:horizontalSpacing="2dp"
                android:numColumns="3"
                android:stretchMode="columnWidth"
                android:verticalSpacing="3dp" >
            </GridView>
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/relativeLayout4"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp" >

            <ImageView
                android:id="@+id/thrdLabel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/alltime_hits" >
            </ImageView>

            <GridView
                android:id="@+id/grid3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_below="@id/thrdLabel"
                android:gravity="center"
                android:horizontalSpacing="2dp"
                android:numColumns="3"
                android:stretchMode="columnWidth"
                android:verticalSpacing="3dp" >
            </GridView>
        </RelativeLayout>
    </LinearLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

通过扩展Gridview&amp; amp;覆盖onMeasure()。