如何在Seam上定位Android浮动操作按钮

时间:2017-03-08 11:19:00

标签: android layout floating-action-button

我有一张地图,下面有一个表示BottomSheet的区域。

我想在右手边的两者之间的接缝上放置一个浮动动作按钮。

任何人都可以就如何实现这一目标提出任何建议吗?

XML,感谢阅读。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

  <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

    <!-- Map -->

      <com.google.android.gms.maps.MapView 
        android:id="@+id/mapView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:longClickable="true"
        app:cameraZoom="15"
        app:mapType="normal"
        android:layout_above="@+id/botsheet_frame"/>

    <!-- FAB -->

      <android.support.design.widget.FloatingActionButton
        android:id="@+id/myFAB"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        app:layout_anchor="@id/botsheet_frame"
        app:layout_anchorGravity="bottom|right|end"
        android:src="@android:drawable/ic_dialog_email"
        android:layout_margin="16dp"
        android:clickable="true"/>

      <!-- place holder for basic BottomSheet area-->
      <RelativeLayout
        android:id="@id/botsheet_frame"
        android:background="#ffffff"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:layout_alignParentBottom="true"
        android:padding="6dp">

    <!-- TextView to be added here -->

    </RelativeLayout>
  </RelativeLayout>
  </FrameLayout>

1 个答案:

答案 0 :(得分:0)

尝试使用RelativeLayout而不是LinearLayout。而对于FloatingActionButton,添加这样的属性,

android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_gravity="end|bottom"