在右下方定位浮动操作按钮

时间:2017-10-16 12:36:38

标签: android layout floating-action-button

我在片段中实现了一个浮动操作按钮,将其放在右下角,并带有以下源代码:

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


 <ListView
     android:id="@+id/listtipologie"
     style="@style/Widget.AppCompat.Light.ListView.DropDown"
     android:layout_width="match_parent"
     android:layout_height="0dp"
     android:layout_weight="1"
     android:clickable="false"
     android:divider="@null"
     android:dividerHeight="10dp"
     android:focusable="false"
     android:footerDividersEnabled="false"
     android:headerDividersEnabled="false"
     android:padding="10dip"></ListView>

  <android.support.design.widget.FloatingActionButton
     android:id="@+id/submit"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_margin="16dp"
     android:clickable="true"
     android:gravity="right"
     android:layout_alignParentBottom="true"
     android:layout_alignParentEnd="true"
     android:layout_alignParentRight="true"
     android:layout_gravity="end|bottom"
     android:layout_below="@id/listtipologie"
     app:srcCompat="@drawable/submit_icon" />



</LinearLayout>

android studio上的显示如下:

enter image description here

但是当我在手机上运行时,浮动动作按钮不会出现在右下方,而是会更高一些。 应用程序以这种方式显示:

enter image description here

任何人都可以帮助我吗? 提前谢谢。

1 个答案:

答案 0 :(得分:3)

使用FrameLayout而不是LinearLayout

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


 <ListView
     android:id="@+id/listtipologie"
     style="@style/Widget.AppCompat.Light.ListView.DropDown"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:clickable="false"
     android:divider="@null"
     android:dividerHeight="10dp"
     android:focusable="false"
     android:footerDividersEnabled="false"
     android:headerDividersEnabled="false"
     android:padding="10dip"></ListView>

  <android.support.design.widget.FloatingActionButton
     android:id="@+id/submit"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_margin="16dp"
     android:clickable="true"
     android:layout_gravity="bottom|right"
     app:srcCompat="@drawable/submit_icon" />

</FrameLayout>