嵌套的CoordinaterLayout隐藏了snackbar

时间:2015-12-30 17:28:21

标签: android android-fragments android-viewpager android-coordinatorlayout android-snackbar

我有一个父视图,其根视图是CoordinatorLayout。父布局包含TabLayoutViewPagerViewPager包含两个子片段。子片段的根视图也有CoordinatorLayout,并包含RecyclerView。这是我的xml文件:

父:

<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

解释起来有点复杂,如果我能澄清任何部分,请告诉我。

1 个答案:

答案 0 :(得分: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)