我正在制作一个布局,其中包含两个Recyclerview,中间是文本视图。现在我希望整个布局是可滚动的,我现在拥有的是一个卡在中间的文本视图和布局不可滚动,我尝试用scrollview包装它们但是没有工作,仍然是相同的行为。 你如何让整个布局可以滚动?
public static void main(String[] args) {
method();
}
答案 0 :(得分:0)
您可以使用它来滚动整个布局: -
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
// your layout which has to be scrolled
</android.support.v4.widget.NestedScrollView>