如何更改网格视图滚动类型



我想更改 GridView 滚动样式以滚动一个部分(如 ViewPager(,而不是一次滚动一行。任何人都可以告诉我在不使用任何第三方库的情况下实现此行为的最佳方法是什么?

这里有一篇文章解释了如何将 GridView 与水平滚动一起使用,据我了解,如果您想让它用作 ViewPager

基本上你插入网格视图在水平滚动视图中

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

相关内容

  • 没有找到相关文章

最新更新