我有一個父視圖,其根視圖是CoordinatorLayout
。父佈局包含TabLayout
和ViewPager
。 ViewPager
包含兩個子片段。子片段也具有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
完全隱藏。我認爲這是因爲TabLayout
和SnackBar
具有相同的高度。
如何設置佈局以便SnackBar
顯示?
這有點複雜的解釋讓我知道我是否可以澄清任何部分。