底图和按钮动画类似于Google Map

时间:2018-12-09 20:06:01

标签: android google-maps android-animation bottom-sheet

我想在Android中实现与Google Map相同的动画效果,其中bottomsheet会滑动一段时间,并在其顶部锚定按钮。达到一定高度后,bottomsheet在按钮上滑动。我可以使用bottomsheet将按钮锚定到layout_anchorGravity="top|left"的顶部,但是我不知道在按钮达到特定高度后如何在其上滑动。我真的很困扰这个问题,这让我发疯。

    <androidx.coordinatorlayout.widget.CoordinatorLayoutxmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/coordinator_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:orientation="vertical"
            app:layout_anchor="@+id/bottomsheet"
            app:layout_anchorGravity="top|left">

            <Button
                android:id="@+id/fab"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:background="#FFFFFF"
                android:textColor="#000000"
                android:layout_marginBottom="10dp"/>

            <Button
                android:id="@+id/fab1"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:background="#FFFFFF"
                android:textColor="#000000"
                />

        </LinearLayout>


    <FrameLayout
        android:id="@+id/bottom_sheet"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:behavior_hideable="true"
       app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

        bottom sheet layout

  </FrameLayout>
    </androidx.coordinatorlayout.widget.CoordinatorLayout>

enter image description here enter image description here

0 个答案:

没有答案