在API 21及更高版本中,浮动动作按钮与底部对齐?

时间:2016-05-18 08:35:26

标签: android android-layout floating-action-button

我已使用该代码的浮动操作

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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"
    tools:context=".menuscreens.AllRecipientsActivity">

    <GridView
        android:gravity="center"
        android:numColumns="3"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/gridViewRecipients"
        />

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginTop="@dimen/action_button_margin"
        android:layout_marginBottom="@dimen/action_button_margin"
        android:layout_marginRight="@dimen/action_button_margin"
        android:layout_marginEnd="@dimen/action_button_margin"
        android:layout_marginLeft="@dimen/action_button_margin"
        android:src="@android:drawable/ic_input_add"
        android:tint="#fff"
        android:id="@+id/fabAddMoreRecipients"
        android:layout_gravity="bottom|right"

        />

</RelativeLayout>

基本上我的问题是,在API 21及更高版本中,它没有从底部获得保证金

和两个屏幕截图,其中一个来自bluestack API 19,第二个是MotoG API 23

API 19 bluestack

API 23 MotoG

2 个答案:

答案 0 :(得分:1)

使用app:useCompatPadding="true",如下所示

<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:src="@drawable/icon_add_place"
    app:backgroundTint="@color/colorPrimary"
    app:fabSize="normal"
    app:useCompatPadding="true"/>

答案 1 :(得分:0)

尝试设置此属性

android:layout_gravity="bottom|right"