gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 19:22:27 25 4
gpt4 key购买 nike

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

enter image description here

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

enter image description here

值得注意的是,按钮保留在屏幕上所有其他内容之上。然而,实际上发生的是这样的:

enter image description here

按钮在标题栏后面错误呈现的位置。我的布局 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 作为其根元素,并包含 map 、详细信息文本和图片中可以看到的其他 UI 元素上面(基本上除了标题栏和 float 按钮之外的所有内容)。

如何使 FloatingActionButtons 始终位于标题栏的顶部?

最佳答案

海亚罗斯,

在你的应用栏中,添加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">

希望对您有所帮助:)

关于java - FloatingActionButton - 滚动后不正确的 z-index,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42151537/

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