我有一个CoordinatorLayout
,它有一个主View
和一个LinearLayout
作为底页app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
,这种方法工作正常(我可以将botton工作表布局向上滑动)。
<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">
<!-- main view-->
<View
android:background="@android:color/holo_red_dark"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<!-- bottom sheet content -->
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:behavior_hideable="true"
app:behavior_peekHeight="85dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<!-- more bottom sheet content ... -->
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
现在,我具有以下单个活动布局,其中我替换了片段<include layout="@layout/content_main" />
主视图和底部工作表将在另一个布局内(从片段放大)。问题在于主视图和底表将不会是CoordinatorLayout的直接子级,并且滑动不起作用。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<!-- main View + bottomsheet -->
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
在这种情况下如何使幻灯片向上工作?