2

我正在考虑新的android jetpack 导航最佳实践,每个应用程序中应该只有一个活动。我想使用一个活动在片段中实现以下菜单,但我对在同一个应用程序中实现多个菜单时的最佳实践是什么非常不安全。

BottomNavigationView参考回购):

<LinearLayout 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:orientation="vertical"
    tools:context="com.example.android.navigationadvancedsample.MainActivity">

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/nav_host_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_nav"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:menu="@menu/bottom_nav"/>
</LinearLayout>

截屏:
底部导航视图

DrawerLayout(参考回购):

<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.drawerlayout.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <com.google.android.material.appbar.AppBarLayout
                android:id="@+id/appbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:theme="@style/AppTheme.AppBarOverlay">

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

            </com.google.android.material.appbar.AppBarLayout>

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

        </LinearLayout>

        <com.google.android.material.navigation.NavigationView
            android:id="@+id/navigation_view"
            style="@style/Widget.MaterialComponents.NavigationView"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            app:headerLayout="@layout/nav_header"
            app:menu="@menu/menu_navigation"/>

    </androidx.drawerlayout.widget.DrawerLayout>

</layout>

截屏:
在此处输入图像描述

考虑到来自谷歌的这些示例,对于如何使用最佳实践在一个活动中实现两个视图没有明确的答案,因为每个示例仅分别为其应用程序使用一种形式的导航视图DrawerLayout,或者BottomNavigationView

问题是: 1. 为不同的片段使用不同的导航视图制作活动的最佳实践是什么?例如,几个片段使用DrawerLayout,而其他片段使用BottomNavigationView. 2. 如果想在查看认证视图和登录时同时隐藏 theDrawerLayout和 the 并在认证时显示它们怎么办?BottomNavigationView

4

2 回答 2

1

您可以同时实现它们,并且可以以编程方式隐藏或显示它们,或者在包含不包含<include/>这些导航组件的导航的活动之前具有身份验证视图。

于 2019-08-15T05:50:09.540 回答
1

使用 Jetpack Navigation,您可以添加一个 Navigation Host 和一个与主 Activity 中的主导航图连接的 Navigation Drawer,以及另一个具有底部导航的 Navigation Host 连接到默认起始片段内的第二个导航图。我找到了本教程https://proandroiddev.com/android-jetpack-navigationui-a7c9f17c510e及其示例项目https://github.com/sagar-viradiya/NavigationUIDemo

于 2020-02-16T19:35:51.313 回答