我有一个回收站视图,该回收站视图的项目如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/question_bkg"
android:orientation="vertical"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/questionTitle"
android:padding="10dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/dynamicLayout"
android:layout_below="@id/questionTitle"
android:layout_alignParentLeft="true"></LinearLayout>
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/dynamicLayout"
android:numColumns="2"
android:id="@+id/questionChoicesRecycler"></GridView>
</RelativeLayout>
设置recyclerView.setNestedScrollingEnabled(true);
后,仍然无法在gridview中滚动。我怎样才能解决这个问题?
还是有一种方法可以使用回收站而不是gridview但可以连续使用2个项目?
答案 0 :(得分:1)
将GridView放在ScrollView中。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/dynamicLayout"
android:numColumns="2"
android:id="@+id/questionChoicesRecycler">
</GridView>
</ScrollView>
答案 1 :(得分:0)
您可以将RecyclerView与GridLayoutManager类一起使用 有关 GridLayoutManager
的更多信息GridLayoutManager recyclerViewLayoutManager = new GridLayoutManager(context,2);//context is your activity and 2 is number of columns