我正在进行如下布局
<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
的某些部分会变为隐藏,而RecyclerView
在ScrollView
中不起作用。如何实现上面的布局做垂直滚动?
答案 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>