0

私のアプリでは、スクロールビューは正常に動作しますが、すべてのグリッドビューは部分的なイメージブトンのみを表示します。各グリッドに 6 つのイメージボタンとテキストビューを表示する必要があります。

    <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>
4

1 に答える 1

0

Gridview を拡張して onMeasure() をオーバーライドすることで機能します。

于 2013-09-05T07:13:40.383 に答える