如何在滚动视图的末尾有一个水平的网格视图

how to have a horizontal gridview at the end of scrollview

我有一个滚动视图,其中包含我的 android 应用程序中某个项目的详细信息,我需要在该视图的末尾添加类似项目的水平列表(每个项目都从布局中展开)。谁能告诉我该怎么做?

P.S:我已经尝试过 Recyclerview 和 gridview 以及一个库表单 this link 但它们都不能在 scrollview 中工作!!!

看看 recent-images 图书馆。它提供水平网格视图(一行)。只需添加此库依赖项并将以下代码放在滚动视图的底部。

<com.jess.ui.TwoWayGridView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#E8E8E8"
android:id="@+id/gridview"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
app:columnWidth="70dp"
app:rowHeight="70dp"
app:numColumns="auto_fit"
app:numRows="auto_fit"
app:verticalSpacing="16dp"
app:horizontalSpacing="16dp"
app:gravity="center"/>