构建自适应导航

大多数应用都有一些顶级目的地,可以通过应用的主要导航 UI 访问。在紧凑的窗口(例如标准手机显示屏)中,这些目的地通常显示在窗口底部的导航栏中。在扩展窗口(例如平板电脑上的全屏应用)中,侧边栏导航通常是更好的选择,因为在握住设备的左右两侧时,导航控件更容易触及。

NavigationSuiteScaffold 通过根据 WindowSizeClass 显示合适的导航 UI 可组合项来简化导航 UI 之间的切换。这包括在运行时窗口大小更改期间动态更改 UI。默认行为是显示以下 UI 组件之一:

  • 如果宽度或高度紧凑,或者设备处于桌面模式,则显示导航栏
  • 对于其他所有情况,显示导航栏
图 1. NavigationSuiteScaffold 在紧凑窗口中显示导航栏。
图 2. NavigationSuiteScaffold 在扩展窗口中显示导航栏。

添加依赖项

NavigationSuiteScaffoldMaterial3 自适应导航套件 库的一部分。在您的应用或模块的 build.gradle 文件中添加该库的依赖项

Kotlin

implementation("androidx.compose.material3:material3-adaptive-navigation-suite")

Groovy

implementation 'androidx.compose.material3:material3-adaptive-navigation-suite'

创建脚手架

NavigationSuiteScaffold 的两个主要部分是导航套件项和所选目的地的内容。您可以直接在可组合项中定义导航套件项,但通常在其他地方定义这些项,例如在枚举中。

enum class AppDestinations(
    @StringRes val label: Int,
    val icon: ImageVector,
    @StringRes val contentDescription: Int
) {
    HOME(R.string.home, Icons.Default.Home, R.string.home),
    FAVORITES(R.string.favorites, Icons.Default.Favorite, R.string.favorites),
    SHOPPING(R.string.shopping, Icons.Default.ShoppingCart, R.string.shopping),
    PROFILE(R.string.profile, Icons.Default.AccountBox, R.string.profile),
}

要使用 NavigationSuiteScaffold,您必须跟踪当前目的地,您可以使用 rememberSaveable 来完成。

var currentDestination by rememberSaveable { mutableStateOf(AppDestinations.HOME) }

在下面的示例中,navigationSuiteItems 参数(类型 NavigationSuiteScope)使用其 item 函数来定义单个目的地的导航 UI。目的地 UI 用于导航栏、侧边栏和抽屉。要创建导航项,您可以遍历您的 AppDestinations(在前面的代码段中定义)。

NavigationSuiteScaffold(
    navigationSuiteItems = {
        AppDestinations.entries.forEach {
            item(
                icon = {
                    Icon(
                        it.icon,
                        contentDescription = stringResource(it.contentDescription)
                    )
                },
                label = { Text(stringResource(it.label)) },
                selected = it == currentDestination,
                onClick = { currentDestination = it }
            )
        }
    }
) {
    // TODO: Destination content.
}

在目的地内容 lambda 中,使用 currentDestination 值来决定要显示哪个 UI。如果您在应用中使用导航库,请在此处使用它来显示相应的目的地。when 语句就足够了。

NavigationSuiteScaffold(
    navigationSuiteItems = { /*...*/ }
) {
    // Destination content.
    when (currentDestination) {
        AppDestinations.HOME -> HomeDestination()
        AppDestinations.FAVORITES -> FavoritesDestination()
        AppDestinations.SHOPPING -> ShoppingDestination()
        AppDestinations.PROFILE -> ProfileDestination()
    }
}

更改颜色

NavigationSuiteScaffold 在脚手架占据的整个区域(通常是整个窗口)上创建一个 Surface。在其之上,脚手架绘制特定的导航 UI,例如 NavigationBar。表面和导航 UI 都使用应用主题中指定的值,但您可以覆盖主题值。

containerColor 参数指定表面的颜色。默认为颜色方案的背景颜色。contentColor 参数指定该表面上内容的颜色。默认为为 containerColor 指定的任何内容的“on”颜色。例如,如果 containerColor 使用 background 颜色,则 contentColor 使用 onBackground 颜色。有关颜色系统的工作方式的更多详细信息,请参阅 Compose 中的 Material Design 3 主题。覆盖这些值时,请使用主题中定义的值,以便您的应用支持深色和浅色显示模式。

NavigationSuiteScaffold(
    navigationSuiteItems = { /* ... */ },
    containerColor = MaterialTheme.colorScheme.primary,
    contentColor = MaterialTheme.colorScheme.onPrimary,
) {
    // Content...
}

导航 UI 绘制在 NavigationSuiteScaffold 表面前面。UI 颜色的默认值由 NavigationSuiteDefaults.colors() 提供,但您也可以覆盖这些值。例如,如果您希望导航栏的背景透明,但其他值保持默认值,则覆盖 navigationBarContainerColor

NavigationSuiteScaffold(
    navigationSuiteItems = { /* ... */ },
    navigationSuiteColors = NavigationSuiteDefaults.colors(
        navigationBarContainerColor = Color.Transparent,
    )
) {
    // Content...
}

最终,您可以自定义导航 UI 中的每个项目。调用 item 函数时,您可以传入 NavigationSuiteItemColors 的实例。该类指定导航栏、侧边栏和导航抽屉中项目的颜色。这意味着您可以跨每个导航 UI 类型使用相同的颜色,也可以根据您的需要更改颜色。在 NavigationSuiteScaffold 级别定义颜色以对所有项目使用相同的对象实例,并调用 NavigationSuiteDefaults.itemColors() 函数仅覆盖您要更改的那些颜色。

val myNavigationSuiteItemColors = NavigationSuiteDefaults.itemColors(
    navigationBarItemColors = NavigationBarItemDefaults.colors(
        indicatorColor = MaterialTheme.colorScheme.primaryContainer,
        selectedIconColor = MaterialTheme.colorScheme.onPrimaryContainer
    ),
)

NavigationSuiteScaffold(
    navigationSuiteItems = {
        AppDestinations.entries.forEach {
            item(
                icon = {
                    Icon(
                        it.icon,
                        contentDescription = stringResource(it.contentDescription)
                    )
                },
                label = { Text(stringResource(it.label)) },
                selected = it == currentDestination,
                onClick = { currentDestination = it },
                colors = myNavigationSuiteItemColors,
            )
        }
    },
) {
    // Content...
}

自定义导航类型

NavigationSuiteScaffold 的默认行为会根据 窗口大小类 更改导航 UI。但是,您可能希望覆盖此行为。例如,如果您的应用为 Feed 显示单个大内容窗格,则应用可以对扩展窗口使用永久性导航抽屉,但仍可回退到紧凑型和中等窗口大小类的默认行为。

val adaptiveInfo = currentWindowAdaptiveInfo()
val customNavSuiteType = with(adaptiveInfo) {
    if (windowSizeClass.windowWidthSizeClass == WindowWidthSizeClass.EXPANDED) {
        NavigationSuiteType.NavigationDrawer
    } else {
        NavigationSuiteScaffoldDefaults.calculateFromAdaptiveInfo(adaptiveInfo)
    }
}

NavigationSuiteScaffold(
    navigationSuiteItems = { /* ... */ },
    layoutType = customNavSuiteType,
) {
    // Content...
}

其他资源

请参阅 Material Design 指南

请参阅以下 androidx.compose.material3 库组件: