我有一个滚动视图,其中包含我的Android应用中的项目的详细信息,我需要的是在此视图的末尾添加类似项目的水平列表(每个从布局中充气)。谁能告诉我怎么做?
P.S:我已经尝试过Recyclerview和gridview以及一个库形式this link但是所有这些都没有在scrollview中工作!!!
答案 0 :(得分:1)
查看recent-images图书馆。它提供水平网格视图(一行)。只需添加此库依赖项,并将下面的代码放在scrollView的底部。
<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"/>