当前位置: 代码迷 >> Android >> FloatingActionButton - 滚动后不正确的 z-index
  详细解决方案

FloatingActionButton - 滚动后不正确的 z-index

热度:41   发布时间:2023-08-04 09:59:36.0

我在 Android 应用程序中有一些FloatingActionButtons ,锚定在视图中的标题栏下方,其中按钮下方的内容是可滚动的。 在初始加载时,视图正确显示,如下所示:

当用户滚动页面上的内容时,他们应该看到的是这样的:

值得注意的是,按钮仍然高于屏幕上的所有其他内容。 然而实际发生的事情是这样的:

按钮在标题栏后面错误呈现的位置。 我的布局 XML 文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="au.com.suncoastpc.coastlive.activity.EventDetailsActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/AppTheme.PopupOverlay"/>

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

    <LinearLayout
        app:layout_anchor="@id/app_bar"
        app:layout_anchorGravity="bottom|end"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">


        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab_facebook"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/fab_margin"
            android:layout_marginBottom="@dimen/fab_margin"
            app:backgroundTint="#3c5a99"
            app:srcCompat="@drawable/icon_facebook"/>
        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab_music"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/fab_margin"
            android:layout_marginBottom="@dimen/fab_margin"
            android:layout_marginLeft="@dimen/fab_margin"
            app:backgroundTint="#008800"
            app:srcCompat="@drawable/icon_music"/>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/fab_margin"
            app:backgroundTint="#880000"
            app:srcCompat="@drawable/icon_info"/>
    </LinearLayout>

    <include layout="@layout/content_event_details"/>
</android.support.design.widget.CoordinatorLayout>

...其中content_event_details布局有一个NestedScrollView作为其根元素,并包含地图、详细信息文本和其他可以在上图中看到的 UI 元素(基本上除了标题栏和浮动按钮之外的所有内容)。

如何让FloatingActionButtons始终保持在标题栏的顶部?

海·阿罗斯,

在 You Appbar 中,添加android:elevation="4dp" >>>

<android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height"
        android:fitsSystemWindows="true"
        android:elevation="4dp"
        android:theme="@style/AppTheme.AppBarOverlay">

并在包含 FAB 的 LinearLayout 中,添加android:elevation="6dp" >>>

<LinearLayout
        app:layout_anchor="@id/app_bar"
        app:layout_anchorGravity="bottom|end"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:elevation="6dp">

希望能帮助到你 :)

  相关解决方案