gpt4 book ai didi

android - 如何在 fragment 中隐藏底部导航栏

转载 作者:行者123 更新时间:2023-12-04 18:18:47 26 4
gpt4 key购买 nike

我在主要 Activity 中定义了底部导航栏。我在 fragment 中有三个与底部导航栏链接的 fragment 我有回收站 View 所以我想在 RecyclerView 向下滚动时隐藏底部导航栏并在 RecyclerView 向上滚动时显示。
我的问题是如何访问 fragment 中的底部导航栏,因为它是在 MainActivity 中定义的。

这是我的代码:

activity_main.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"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp"
android:background="@color/colorPrimary"
android:paddingBottom="7dp"
android:fitsSystemWindows="true">


<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_scrollFlags="scroll|enterAlways|snap">

<Spinner
android:layout_width="110dp"
android:layout_height="50dp"
android:id="@+id/chooseLocation"
app:backgroundTint="@android:color/white"/>

</android.support.v7.widget.Toolbar>

<EditText
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:id="@+id/search"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:paddingRight="6dp"
android:paddingLeft="12dp"
android:hint="Search here"
android:textColorHint="#9e9e9e"
android:textColor="#000"
tools:ignore="HardcodedText"
android:background="@drawable/search_edit_text"
android:paddingEnd="6dp"
android:paddingStart="12dp"/>

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

<include layout="@layout/content_main" />

<android.support.design.widget.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottomBar"
android:layout_gravity="bottom"
app:menu="@menu/bottom_menu"
android:background="#fff"
app:itemIconTint="@drawable/nav_check"
app:itemTextColor="@drawable/nav_check"/>

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

fragment_home.xml
<?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=".Tab1Fragment"
android:background="#fff">

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/purchasedBook"/>


</RelativeLayout>

这就是我的 fragment 的定义方式,因为任何 fragment 中都没有底部导航栏,所以我如何访问 fragment 中的底部导航栏。

有人,请让我知道任何帮助将不胜感激。

谢谢

最佳答案

要从 fragment 中访问您的 BottomNavigationView,请使用以下代码:

BottomNavigationView navBar = getActivity().findViewById(R.id.bottomBar);

关于android - 如何在 fragment 中隐藏底部导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56215403/

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