gpt4 book ai didi

android - 导航体系结构组件-带登录屏幕的BottomNavigationView

转载 作者:行者123 更新时间:2023-12-02 13:43:09 24 4
gpt4 key购买 nike

我有如下所示的MainActivity设置:

<androidx.constraintlayout.widget.ConstraintLayout 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=".ui.host.HostActivity">



<fragment
android:id="@+id/mainNavigationFragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:labelVisibilityMode="labeled"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/main_nav_menu" />

</androidx.constraintlayout.widget.ConstraintLayout>

底部导航具有3个选项卡,只有在执行一些初始身份验证和设置用户调用后才能显示。

在让用户开始使用底部导航 View 之前,显示“加载/设置用户”屏幕的最佳方法是什么。

我想的一种方法是将NaHostFragment的设置延迟到我的Activity中,直到完成所有设置为止。
因此,基本上可以切换 mainNavigationFragmentBottomNavigationView的可见性,直到设置完成。

还有其他想法吗?

最佳答案

NavigationUI documentation实际上使用隐藏BottomNavigationView作为示例。您还可以使用OnDestinationChangedListener更新BottomNavigationView的可见性,例如,仅在用户位于登录屏幕上时将其隐藏(请注意,按照Conditional Navigation documentation的规定,您不应在图形的起始位置执行此操作,但将用户重定向到这些屏幕):

navController.addOnDestinationChangedListener { _, destination, _ ->
if(destination.parent?.id == R.id.login) {
bottomNavigationView.visibility = View.GONE
} else {
bottomNavigationView.visibility = View.VISIBLE
}

}

关于android - 导航体系结构组件-带登录屏幕的BottomNavigationView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61604091/

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