我有一个动态网格视图。表示其内容不同。因此,如果项目数量增加,则会进行垂直滚动。我想把它做成水平滚动。
请为此提出一些解决方案。
我有一个动态网格视图。表示其内容不同。因此,如果项目数量增加,则会进行垂直滚动。我想把它做成水平滚动。
请为此提出一些解决方案。
<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>
您可以使用第三方库双向网格视图。它非常适合水平滚动,或者您可以使用RecyclerView
您可以尝试将GridView
. HorizontalScrollView
您可以尝试将固定高度设置GridView
为HorizontalScrollView
.
然后您可以根据您的内容动态计算列数GridView
并使用setNumColumns(int)
方法来设置它。