浮动动作按钮重力不起作用

时间:2017-02-12 15:31:49

标签: android xml floating-action-button

我有一个浮动动作按钮应位于右下角,但显然重力不起作用。它显示在左上角。这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/rl"
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

<ImageView
    android:id="@+id/iv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="16dp"
    android:src="@mipmap/ic_action_send"
    app:backgroundTint="@color/colorPrimaryDark"
    app:layout_anchor="@id/iv"
    app:layout_anchorGravity="bottom|right|end"/>

</RelativeLayout>

4 个答案:

答案 0 :(得分:9)

  

我有一个浮动动作按钮,应位于右下方   角落,但显然重力不起作用

除非您将内容包裹在CoordinatorLayout附近,否则这是预期的行为。 E.g

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">


     <ImageView
      android:id="@+id/iv"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

 <android.support.design.widget.FloatingActionButton
       android:id="@+id/fab"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_gravity="bottom|end"
       android:layout_margin="16dp"
       android:src="@mipmap/ic_action_send"
       app:backgroundTint="@color/colorPrimaryDark"
       app:layout_anchor="@id/iv"
       app:layout_anchorGravity="bottom|right|end"/>
 </android.support.design.widget.CoordinatorLayout>

应该这样做。您可以详细了解CoordinatorLayout here

答案 1 :(得分:2)

使用android:layout_alignParentBottom="true"android:layout_alignRight="@id/iv"作为FloatingActionButton参数。

答案 2 :(得分:0)

使用app:layout_anchorGravity="bottom|right|end"代替{{1}}将其放入最底部(右下角)

答案 3 :(得分:0)

对于FrameLayout,您可以尝试:

<FrameLayout 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"
    android:fitsSystemWindows="true"
    tools:context="ch13mob.wifiofworldairports.fragment.FragmentWifiAirports">

    <include layout="@layout/wifi_list" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab_wifi"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:src="@drawable/ic_wifi_black_24dp" />

</FrameLayout>