Android无法将FAB按钮锚定到BottomSheet

我试图将FAB按钮附加到BottomSheet视图,例如Google Maps。 但是我无法让它工作,

这是FAB按钮的代码:

 <android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email"
    app:layout_anchor="@+id/nestedscrollview" --> BottomSheet view ID
    app:layout_anchorGravity="bottom|end"
    app:elevation="4dp"
    />

这是BottomSheet视图的代码

<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedscrollview"
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="wrap_content"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
tools:context="com.pub.uac.ui.location.LocationActivity"
android:background="@color/background_white_trasnparent"
 > 
... 
</...

这取决于你的意思是“无法使其工作”以及你想达到的目标。

如果您设置了FAB,它会更好吗?

  app:layout_anchorGravity="top|end"

您使用“底部”而不是“顶部”,所以FAB不会被底部表单推动,它会停留在底部。 使用“顶部”时,至少应该跟随表单。

链接地址: http://www.djcxy.com/p/91575.html

上一篇: Android Cannot anchor FAB button to BottomSheet

下一篇: Is there any way to use aiohttp client with socks proxy?