3

我有一個父視圖,其根視圖是CoordinatorLayout。父佈局包含TabLayoutViewPagerViewPager包含兩個子片段。子片段也具有CoordinatorLayout作爲其根視圖幷包含RecyclerView。這裏是我的xml文件:嵌套CoordinaterLayout隱藏快餐欄

家長:

<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<android.support.v4.view.ViewPager 
    android:id="@+id/explore_viewpager" 
    android:layout_width="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    android:layout_height="match_parent"/> 

<android.support.design.widget.AppBarLayout 
    android:id="@+id/main_activity_appbar" 
    android:layout_width="match_parent" 
    app:elevation="2dp" 
    android:layout_height="wrap_content"> 
    <android.support.design.widget.TabLayout 
     android:id="@+id/explore_tablayout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     app:layout_scrollFlags="scroll|enterAlways|snap" 
     android:background="@color/tab_layout_bg" 
     app:tabIndicatorColor="@color/tab_indicator_color" 
     app:tabGravity="fill"/> 
</android.support.design.widget.AppBarLayout> 



</android.support.design.widget.CoordinatorLayout> 

兒童:

<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/basic_recycler_view_layout_coordinator_layout" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

<android.support.v7.widget.RecyclerView 
    android:id="@+id/recycler_view" 
    android:scrollbars="vertical" 
    android:clipToPadding="false" 
    android:paddingTop="@dimen/single_margin" 
    android:paddingBottom="@dimen/single_margin" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"/> 

</android.support.design.widget.CoordinatorLayout> 

現在,當我試圖表明從孩子片段SnackBar,它不顯示和隱藏屏幕外。如果我滾動子片段,則父項中的TabLayout會崩潰(按預期),並出現SnackBar。我周圍搜索,它有一個類似的行爲:Android Design Support Library FAB in a ViewPager Fragment with Coordinator Layout除了SnackBar完全隱藏。我認爲這是因爲TabLayoutSnackBar具有相同的高度。

如何設置佈局以便SnackBar顯示?

這有點複雜的解釋讓我知道我是否可以澄清任何部分。

回答

0

我想通了。這與我上面鏈接的FAB問題基本相同。我需要在父活動/片段中顯示它。所以我解決這個問題的方式是獲得父級的根視圖。

private View getParentLayoutRootView(){ 

    if(getParentFragment() != null) { //if it has a parent fragment 
     return getParentFragment().getView(); 
    } 
    else { 
     return getActivity().getWindow().getDecorView().getRootView(); 
    } 
} 

然後做這樣的事情:

Snackbar.make(getParentLayoutRootView(), message, duration)