在NestedScrollView中使用recylerview的CollapsingToolbarLayout不起作用

时间:2015-08-24 04:41:19

标签: android xml

我有类似这样的基础布局

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没有发生。

请帮忙。感谢。

0 个答案:

没有答案