Android 开发之深入浅出 NavigationUI,嵌入式音视频开发课程百度云

本文介绍了如何在Android应用中深入使用NavigationUI,包括设置多个最顶层目的页面,使用setSupportActionBar和setupActionBarWithNavController进行导航功能集成,以及在不同屏幕尺寸下切换底部标签栏和抽屉式导航栏。同时,详细阐述了菜单项与导航图目的页面的对应关系,确保导航的无缝衔接。
摘要由CSDN通过智能技术生成

默认情况下,您应用的最初页面是唯一的最顶层目的页面,但是您也可以定义多个最顶层目的页面。比如,在我们的应用中,我可以将 donutList  coffeeList 的目的页面都定义为最顶层的目的页面。

接下来,在 MainActivity 类中,获得 navController 和 toolbar 的实例,并且验证 setSupportActionBar() 是否被调用。这里我还更新了传入函数的 toolbar 的引用。

val navHostFragment = supportFragmentManager.findFragmentById(

R.id.nav_host_fragment

) as NavHostFragment

navController = navHostFragment.navController

val toolbar = binding.toolbar

要在默认的操作栏 (Action Bar) 中添加导航功能,我在这里使用了 setupActionBarWithNavController() 函数。该函数需要两个参数: navController 和 appBarConfiguration

setSupportActionBar(toolbar)

setupActionBarWithNavController(navController, appBarConfiguration)

接下来,根据目前的目的页面,我覆写了 onSupportNavigationUp() 函数,然后在 nav_host_fragment 上调用 navigateUp() 并传入 appBarConfiguration 来支持回退导航或者显示菜单图标的功能。

override fun onSupportNavigateUp(): Boolean {

return findNavController(R.id.nav_host_fragment).navigateUp(

appBarConfiguration

)

}

现在我可以导航到 selectionFragment,并且您可以看到标题已经更新,并且也显示了返回按钮,用户可以返回到之前的页面。

△ 标题更新了并且也显示了返回按钮

底部标签栏


目前为止还算顺利,但是应用还不能导航到 coffeeList Fragment。接下来我们将解决这个问题。

我们从添加底部标签栏入手。首先添加 bottom_nav_menu.xml 文件并且声明两个菜单元素。NavigationUI 依赖 MenuItem 的 id,用它与导航图中目的页面的 id 进行匹配。我还为每个目的页面设置了图标和标题。

<item

android:id="@id/donutList"

android:icon="@drawable/donut_with_sprinkles"

android:title="@string/donut_name" />

<item

android:id="@id/coffeeList"

android:icon="@drawable/coffee_cup"

android:title="@string/coffee_name" />

现在 MenuItem 已经就绪,我在 mainActivity 的布局中添加了 BottomNavigationView,并且将 bottom_nav_menu 设置为 BottomNavigationView的 menu 属性。

<com.google.android.material.bottomnavigation.BottomNavigationView

android:id="@+id/bottom_nav_view"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

app:menu="@menu/bottom_nav_menu" />

要使底部标签栏发挥作用,这里调用 setupWithNavController() 函数将 navController 传入 BottomNavigationView

private fun setupBottomNavMenu(navController: NavController) {

val bottomNav = findViewById(

R.id.bottom_nav_view

)

bottomNav?.setupWithNavController(navController)

}

请注意我并没有从导航图中调用任何导航操作。实际上导航图中甚至没有前往 coffeeList Fragment 的路径。和之前对 ActionBar 所做的操作一样,BottomNavigationView 通过匹配 MenuItem 的 id 和导航目的页面的 id 来自动响应导航操作。

抽屉式导航栏


虽然看上去不错,但是如果您设备的屏幕尺寸较大,那么底部标签栏恐怕无法提供最佳的用户体验。要解决这个问题,我会使用另外一个布局文件,它带有 w960dp 限定符,表明它适用于屏幕更大、更宽的设备。

这个布局文件与默认的 activity_main 布局相类似,其中已经包含了 Toolbar 和 FragmentContainerView。我需要添加 NavigationView,并且将 nav_drawer_menu 设置为 NavigationView 的 menu 属性。接下来,我将在 NavigationView 和 FragmentContainerView 之间添加分隔符。

<RelativeLayout

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=“com.android.samples.donuttracker.MainActivity”>

<com.google.android.material.navigation.NavigationView

android:id="@+id/nav_view"

android:layout_width=“wrap_content”

android:layout_height=“match_parent”

android:layout_alignParentStart=“true”

app:elevation=“0dp”

app:menu="@menu/nav_drawer_menu" />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:layout_toEndOf="@id/nav_view"

android:background="?android:attr/listDivider" />

<androidx.appcompat.widget.Toolbar

android:id="@+id/toolbar"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_alignParentTop=“true”

android:background="@color/colorPrimary"

android:layout_toEndOf="@id/nav_view"

android:theme="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar" />

<androidx.fragment.app.FragmentContainerView

android:id="@+id/nav_host_fragment"

android:name=“androidx.navigation.fragment.NavHostFragment”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:layout_below="@id/toolbar"

app:defaultNavHost=“true”

android:layout_toEndOf="@id/nav_view"

app:navGraph="@navigation/nav_graph" />

如此一来,在宽屏幕设备上,NavigationView 会代替 BottomNavigationView 显示在屏幕上。现在布局文件已经就绪,我再创建一个 nav_drawer_menu.xml,并且将 donutList 和 coffeeList 作为主要的分组添加为目的页面。对于 MenuItem,我添加了 selectionFragment 作为它的目的页面。

<item

android:id="@id/donutList"

android:icon="@drawable/donut_with_sprinkles"

android:title="@string/donut_name" />

<item

android:id="@id/coffeeList"

android:icon="@drawable/coffee_cup"

android:title="@string/coffee_name" />

<item

android:id="@+id/selectionFragment"

android:title="@string/action_settings" />

现在所有布局已经就绪,我们回到 MainActivity,设置抽屉式导航栏,使其能够与 NavigationController 协作。和之前针对 BottomNavigationView 所做的相类似,这里创建一个新的方法,并且调用 setupWithNavController() 函数将 `navControlle

《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享

r传入NavigationView。为了使代码保持整洁、各个元素之间更加清晰,我们会在新的方法中实现相关操作,并且在onCreate()` 中调用该方法。

private fun setupNavigationMenu(navController: NavController){

val sideNavView = findViewById(R.id.nav_view)

sideNavView?.setupWithNavController(navController)

}

现在当我在屏幕较宽的设备上运行应用时,可以看到抽屉式导航栏已经设置了 MenuItem,并且在导航图中,MenuItem 和目的页面的 id 是相匹配的。

△ 在屏幕较宽的设备上运行 Donut Tracker

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值