9

我有一个动态网格视图。表示其内容不同。因此,如果项目数量增加,则会进行垂直滚动。我想把它做成水平滚动。

请为此提出一些解决方案。

4

3 回答 3

5
        <HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/seatLegendLayout">

        <FrameLayout
            android:layout_width="fill_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:id="@+id/linearLayout_gridtableLayout"
                android:layout_width="900dp"
                android:layout_height="match_parent"
                android:orientation="horizontal">

                <GridView
                    android:id="@+id/gridView1"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_margin="4dp"
                    android:columnWidth="100dp"
                    android:gravity="center"
                    android:numColumns="9"
                    android:horizontalSpacing="1dp"
                    android:scrollbarAlwaysDrawHorizontalTrack="true"
                    android:scrollbarAlwaysDrawVerticalTrack="true"
                    android:scrollbars="horizontal"
                    android:stretchMode="none"
                    android:verticalSpacing="1dp">

                </GridView>


            </LinearLayout>
        </FrameLayout>
    </HorizontalScrollView>
于 2016-03-21T14:28:50.637 回答
2

您可以使用第三方库双向网格视图。它非常适合水平滚动,或者您可以使用RecyclerView

于 2015-10-23T12:48:16.380 回答
1

您可以尝试将GridView. HorizontalScrollView您可以尝试将固定高度设置GridViewHorizontalScrollView.

然后您可以根据您的内容动态计算列数GridView并使用setNumColumns(int)方法来设置它。

于 2013-04-10T07:11:22.757 回答