我正在尝试使此底部工作表仅扩展到另一个视图的底部,但无法弄清楚。我希望locations_list_sheet
扩展至view1
.
我试过设置偏移量,bottomSheet.setExpandedOffset(48)
但没有运气。我也尝试在底部工作表布局的顶部设置边距,但这看起来也不正确。
<layout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@android:color/transparent" />
<include
android:id="@+id/map_content"
layout="@layout/content_locations_stoneco" />
<include
android:id="@+id/locations_list_content"
layout="@layout/bottom_sheet_locations" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>