gpt4 book ai didi

android - 如何在android中滚动时隐藏底部应用栏

转载 作者:行者123 更新时间:2023-12-05 00:13:54 24 4
gpt4 key购买 nike

我正在制作一个 android 应用程序,它有一个 Activity ,其他 Activity 实现主要 Activity 。现在我也在实现一个 Activity 多 fragment 模式。所以每个 Activity 里面至少有 7-8 个 fragment 。这是我的主要 Activity 的布局。

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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"
tools:context=".MainActivity">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="60dp"
android:id="@+id/frame_lay">

</FrameLayout>



<View
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_above="@id/bottom_appbar"
app:layout_anchor="@+id/bottom_appbar"

android:background="@android:color/darker_gray"/>

<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorbottomappbar"
app:fabAlignmentMode="center"
app:navigationIcon="@drawable/ic_menu_green_24dp">

</com.google.android.material.bottomappbar.BottomAppBar>



<ImageButton
android:id="@+id/fab"
android:layout_width="190dp"
android:layout_height="80dp"
android:visibility="visible"
app:layout_anchorGravity="center_horizontal|bottom"
android:background="@drawable/logo"
app:layout_anchor="@+id/bottom_appbar"
android:layout_marginBottom="17dp"/>

<ImageButton
android:id="@+id/fab_two"
android:layout_width="190dp"
android:layout_height="80dp"
android:visibility="gone"
app:layout_anchorGravity="center_horizontal|bottom"
android:background="@drawable/logotwo"
android:elevation="5dp"
app:layout_anchor="@+id/bottom_appbar"
android:layout_marginBottom="13dp">


</ImageButton>

您可以看到我的主要 Activity 中有框架布局,我在其中处理所有 fragment 。我使用图像按钮代替 float 操作按钮,因为我想要椭圆形的 float 操作按钮。现在我想要内部 fragment 当用户滚动然后图像按钮,bottomappbar 和水平线的 View 隐藏?底部应用栏正在许多 fragment 中使用,所以我需要一个代码,我可以在一个 Activity 中编写代码,当用户在 fragment 内滚动时隐藏底部应用栏和图像按钮。我怎样才能实现这个?对于我的愚蠢问题,我很抱歉,因为我是 Android 开发的新手。在此先感谢。

最佳答案

你可以通过将下面两行放在 xml 中来实现这一点

app:hideOnScroll="true"
app:layout_scrollFlags="scroll|enterAlways"

所以完整的 xml 标签将是

<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:fabAlignmentMode="center"
app:hideOnScroll="true"
app:layout_scrollFlags="scroll|enterAlways"/>

关于android - 如何在android中滚动时隐藏底部应用栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55215852/

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