gpt4 book ai didi

android - FloatingActionButton 默认边距在 Lollipop 中不起作用

转载 作者:IT老高 更新时间:2023-10-28 22:25:54 25 4
gpt4 key购买 nike

我在 CoordinatorLayout 中显示 FloatingActionButtonRecyclerview,当点击 FAB 时,将在 中添加一行回收站 View 。现在的问题是,当我在 API 15 中测试时,FAB 有边距,但是当我在 API 22( Lollipop 5.1.1-Nexus 4)中测试时,我没有得到任何边距,并且 FAB 被按下到屏幕边缘。

我担心 FAB 在 API 15 中有默认边距设置(没有测试其他设备),但在 API 22 中没有,或者我遗漏了什么。

我的布局代码:

<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:background="#6fbababa"
android:fitsSystemWindows="true">

<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:paddingBottom="@dimen/fab_padding_bottom"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:orientation="horizontal"
app:layout_scrollFlags="scroll|enterAlwaysCollapsed">
---------------------
---------------------
</LinearLayout>

</android.support.design.widget.AppBarLayout>

<android.support.design.widget.FloatingActionButton
android:id="@+id/button_floating_action"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:src="@drawable/ic_plus"
app:borderWidth="0dp"
app:layout_anchor="@id/my_recycler_view"
app:layout_anchorGravity="bottom|right|end"
app:rippleColor="@color/wallet_highlighted_text_holo_light" />

</android.support.design.widget.CoordinatorLayout>

enter image description here

最佳答案

只需使用:

app:useCompatPadding="true"

这应该会增加所需的空间。

关于android - FloatingActionButton 默认边距在 Lollipop 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30839465/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com