带导航视图的导航组件 android

navigation component with navigation view android

我正在尝试使用导航组件。
目前我有带菜单的导航视图。
我在导航视图中实现 onNavigationItemSelected 并检测点击 item.getItemId() 当点击特定项目时,它会做一些不导航到片段的事情。例如:

 switch (item.getItemId()) {
        case R.id.nav_share:
            Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
            sharingIntent.setType("text/plain");
            String shareBody = "shae StayTuned with friends bla bla bla and we can put app url in the google play " +
                    "if we don't will be sdk";
            sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
            startActivity(Intent.createChooser(sharingIntent, "Share via"));
            break;
        case R.id.nav_disconnect_user:
            FirebaseAuth.getInstance().signOut();
            break;
    }

如何使用导航组件实现? 谢谢!

使用导航组件,您不需要手动实现 OnNavigationItemSelectedListener,因为 setupWithNavController() 方法将目的地连接到与导航图和菜单项之间的 android:id 匹配的菜单项.

如果您使用自定义 NavigationItemSelectedListener,您将删除原始侦听器。在这种情况下,您必须调用 NavigationUI.onNavDestinationSelected() 来触发默认行为。

navigationView.setNavigationItemSelectedListener {
        when (it.itemId) {
            R.id.R.id.nav_share -> {
                // handle click
                true
            }
         }
         //Call the original listener
         NavigationUI.onNavDestinationSelected(it, navController)
         drawerLayout.closeDrawer(GravityCompat.START)
         true
    }