我有一个父视图,其根视图是CoordinatorLayout
. 父布局包含 aTabLayout
和 a ViewPager
。ViewPager
包含两个子片段。子片段也有一个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
从子片段中显示 a 时,它不会显示并且隐藏在屏幕外。如果我滚动子片段,TabLayout
则父片段中的 会折叠(按预期)并SnackBar
出现。我四处搜索,它的行为与此类似:Android Design Support Library FAB in a ViewPager Fragment with Coordinator Layout除了SnackBar
完全隐藏之外。我认为这是因为TabLayout
和SnackBar
具有相同的高度。
如何设置布局以便SnackBar
显示?
这解释起来有点复杂,所以如果我能澄清任何部分,请告诉我。