我有类似这样的基础布局
base_layout.xml
<AppBarLayout>
<CollapsingToolbarLayout>
<!-- Collapsed view goes here -->
</CollapsingToolbarLayout>
</AppBarLayout>
<ViewPager>
<!-- Scrolling things goes here -->
</ViewPager>
</CoordinatorLayout>
和2个孩子的布局是, viewpager_child_1_layout.xml
<RelativeLayout>
<RecyclerView>
<!-- Vertical orientation -->
</RecyclerView>
</RelativeLayout>
和viewpager_child_2_layout.xml
<NestedScrollView>
<LinearLayout>
<RelativeLayout>
<RecyclerView> <!-- Horizontal orientation --> </RecyclerView>
</RelativeLayout>
</LinearLayout>
<LinearLayout>
<RelativeLayout>
<RecyclerView> <!-- Horizontal orientation --> </RecyclerView>
</RelativeLayout>
</LinearLayout>
</NestedScrollView>
对于 viewpager_child_1_layout.xml
,CollapsingToolbarLayout按预期工作,折叠并展开。
但是,viewpager_child_2_layout.xml
没有发生。
请帮忙。感谢。