У меня есть CoordinatorLayout
, у которого есть основной View
и LinearLayout
в качестве нижнего листа app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
Это прекрасно работает (я могу скользить вверх по макету нижнего листа).
<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>
Как я могу заставить слайд работать в такой ситуации?