Android无法将FAB按钮锚定到BottomSheet

时间:2016-04-30 17:31:10

标签: android button floating-action-button

我尝试将FAB按钮附加到BottomSheet视图,就像谷歌地图一样。但是我不能让它发挥作用,

这是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 View的代码

<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"
 > 
... 
</...

1 个答案:

答案 0 :(得分:8)

这取决于你所说的“无法使其发挥作用”以及你试图实现的目标。

如果你在FAB上设置它会更好吗

  app:layout_anchorGravity="top|end"

您使用“bottom”而不是“top”,因此FAB不会被底部页面推动,它将保持在底部。对于“顶部”,它至少应该遵循表格。