Android Drawer - 使用 Navigation.findNavController() 导航到多个片段

Posted

技术标签:

【中文标题】Android Drawer - 使用 Navigation.findNavController() 导航到多个片段【英文标题】:Android Drawer - Navigating to Multiple Fragments using Navigation.findNavController() 【发布时间】:2021-07-17 14:39:42 【问题描述】:

我不知道我这样做是否正确。 我在 android Studio 中使用 Navigation Drawer 模板并成功浏览了 3 个菜单选项。 我所做的是针对我添加的所有菜单,否则将显示下一个片段。 我觉得这种方法有点难,特别是我需要添加更多菜单。

他们是导航片段的更好方法吗?提前致谢。

MainActivity.java

@Override
public boolean onNavigationItemSelected(MenuItem item) 
    String title =  getSupportActionBar().getTitle().toString();
    switch (item.getItemId()) 
        case R.id.nav_home:
            if(title.equals(getString(R.string.title_status))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_status_to_home_fragment);
             else if(title.equals(getString(R.string.title_gallery))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_galley_to_home_fragment);
            
            break;
        case R.id.nav_status:
            if(title.equals(getString(R.string.title_home))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_home_to_status_fragment);
             else if(title.equals(getString(R.string.title_gallery))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_galley_to_status_fragment);
            
            break;
        case R.id.nav_gallery:
            if(title.equals(getString(R.string.title_home))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_home_to_gallery_fragment);
             else if(title.equals(getString(R.string.title_status))) 
                Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_status_to_gallery_fragment);
            
            break;
    

    item.setChecked(true);
    drawer.closeDrawers();
    return true;

mobile_navigation.xml

<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/mobile_navigation"
    app:startDestination="@+id/nav_home">

    <fragment
        android:id="@+id/nav_home"
        android:name="com.ddc.qvac.framents.HomeFragment"
        android:label="@string/title_home"
        tools:layout="@layout/fragment_home">
        <action
            android:id="@+id/action_home_to_status_fragment"
            app:destination="@id/nav_status" />
        <action
            android:id="@+id/action_home_to_gallery_fragment"
            app:destination="@id/nav_gallery" />
    </fragment>

    <fragment
        android:id="@+id/nav_gallery"
        android:name="com.ddc.qvac.framents.gallery.GalleryFragment"
        android:label="@string/title_gallery"
        tools:layout="@layout/fragment_gallery">
        <action
            android:id="@+id/action_galley_to_home_fragment"
            app:destination="@id/nav_home" />
        <action
            android:id="@+id/action_galley_to_status_fragment"
            app:destination="@id/nav_status" />
    </fragment>

    <fragment
        android:id="@+id/nav_status"
        android:name="com.ddc.qvac.framents.StatusFragment"
        android:label="@string/title_status"
        tools:layout="@layout/fragment_status">
        <action
            android:id="@+id/action_status_to_home_fragment"
            app:destination="@id/nav_home" />
        <action
            android:id="@+id/action_status_to_gallery_fragment"
            app:destination="@id/nav_gallery" />
    </fragment>
</navigation>

【问题讨论】:

【参考方案1】:

使用相同的 id:

id在导航xml文件的fragment标签中定义 id 定义在菜单 xml 文件中

在您的mobile_navigation.xml 文件中,您使用"@+id/nav_home" 作为主片段。在您的 menu.xml 文件中,将主菜单的 ID 设为 "@+id/nav_home"

如果菜单文件和导航文件中的 id 相同,它将自动导航到片段。我们不需要做任何样板代码。

【讨论】:

谢谢。有用!我不知道为什么我没有想到这一点。

以上是关于Android Drawer - 使用 Navigation.findNavController() 导航到多个片段的主要内容,如果未能解决你的问题,请参考以下文章

Android 开发之Navigation Drawer

SlidingMenu 库和 Android Navigation Drawer 有啥区别?

为啥 shadowColor: '...' - 不适用于“react-native-drawer”组件的 Android 上的抽屉样式?

Android on Drawer Closed Listener

android navigation drawer怎么用?

在新的 Navigation Drawer Activity 模板中使用 onNavigationItemSelected 在 Fragments 之间切换(Android Studio 1.4 及更