0

我有以下代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".ui.main.MainActivity">

    <fragment
        android:id="@+id/navHostFragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:navGraph="@navigation/main_graph" />

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:id="@+id/coordinatorLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="8dp">

        <include layout="@layout/bottom_sheet" />
    </androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?><!--suppress AndroidUnknownAttribute -->
<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/bottomSheet"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/bottom_sheet_corners"
    android:clickable="true"
    android:focusable="true"
    app:behavior_hideable="false"
    app:behavior_peekHeight="0dp"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    tools:ignore="ContentDescription">

    <com.mobilemedia.tanuki.ui.view.RoundedView
        android:id="@+id/bottomSheetContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:topLeftCornerRadius="16dp"
        app:topRightCornerRadius="16dp">

        <fragment
            android:id="@+id/bottomSheetNavHostFragment"
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:defaultNavHost="true"
            app:navGraph="@navigation/bottom_sheet_graph" />
    </com.mobilemedia.tanuki.ui.view.RoundedView>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/collapsedView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <View
            android:layout_width="32dp"
            android:layout_height="4dp"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp"
            android:background="@drawable/bottom_sheet_indicator"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

我需要聆听底部工作表布局的高度变化,以更改元素相对于该高度的位置

在此处输入图像描述

尽管该项目位于 navHostFragment 中的另一个片段上,但该项目必须始终位于距底部工作表的高度

如何从底部听改变高度?

4

1 回答 1

0

通常情况下,您可以使用BottomSheetCallback收听底部幻灯片。覆盖 onSlide 方法并将您的操作放入其中。此方法在底部工作表被拖动时调用。并且可以获得bottomSheet的所有属性,包括高度。

但更好的方法是实现自定义 CoordinatorLayout.Behavior。仅当您的依赖视图和 BottomSheet 是同一 coordinatorlayout 的子级时,这才有效。只需扩展CoordinatorLayout.Behavior并覆盖layoutDependsOnonDependentViewChanged方法。CoordinatorLayout 就是为了解决这样的问题。互联网上有很多关于此的文章,例如。android 库中还有一个标准的浮动操作按钮行为。

第三种方式是使用 MotionLayout。但它更复杂,而且可能很难开始。所以我不应该建议它,因为它对于这项任务可能过于强大。

于 2020-06-24T22:03:33.293 回答