ScrollView下的RecyclerGridView

时间:2016-03-15 08:59:07

标签: android-layout android-recyclerview

我正在进行如下布局

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

        <LinearLayout
            android:id="@+id/l_out
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

              <-Some view here.....->
       </LinearLayout>
       <android.support.v7.widget.RecyclerView
            android:id="@+id/similar_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
</LinearLayout>

现在问题是我不知道l_out的高度。当l_out的高度更高时,RecyclerView会变为隐藏,l_out的某些部分会变为隐藏,而RecyclerViewScrollView中不起作用。如何实现上面的布局做垂直滚动?

1 个答案:

答案 0 :(得分:0)

希望这会对你有所帮助

<ScrollView
    android:fillViewport="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/id_scroll">
          <android.support.v7.widget.RecyclerView
            android:id="@+id/similar_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />
</ScrollView>