Công thức cơ bản

Công thức này cho thấy một ví dụ cơ bản về cách sử dụng Navigation 3 API với 2 màn hình.

Cách hoạt động

Ví dụ này xác định 2 tuyến đường: RouteARouteB. RouteA là một data object đại diện cho một màn hình đơn giản, trong khi RouteB là một data class lấy id làm tham số.

mutableStateListOf<Any> được dùng để quản lý ngăn xếp lui của hoạt động điều hướng.

Thành phần kết hợp NavDisplay được dùng để hiển thị màn hình hiện tại. Tham số entryProvider là một lambda lấy một tuyến đường từ ngăn xếp lui và trả về một NavEntry. Bên trong entryProvider, câu lệnh when được dùng để xác định thành phần kết hợp nào sẽ hiển thị dựa trên tuyến đường.

Để di chuyển từ RouteA đến RouteB, chúng ta chỉ cần thêm một thực thể RouteB vào ngăn xếp lui. id được truyền dưới dạng một đối số đến lớp dữ liệu RouteB.

/*
 * Copyright 2025 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.example.nav3recipes.basic

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.compose.runtime.mutableStateListOf
import androidx.compose.runtime.remember
import androidx.lifecycle.compose.dropUnlessResumed
import androidx.navigation3.runtime.NavEntry
import androidx.navigation3.ui.NavDisplay
import com.example.nav3recipes.content.ContentBlue
import com.example.nav3recipes.content.ContentGreen
import com.example.nav3recipes.ui.setEdgeToEdgeConfig

private data object RouteA

private data class RouteB(val id: String)

class BasicActivity : ComponentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        setEdgeToEdgeConfig()
        super.onCreate(savedInstanceState)
        setContent {
            val backStack = remember { mutableStateListOf<Any>(RouteA) }

            NavDisplay(
                backStack = backStack,
                onBack = { backStack.removeLastOrNull() },
                entryProvider = { key ->
                    when (key) {
                        is RouteA -> NavEntry(key) {
                            ContentGreen("Welcome to Nav3") {
                                Button(onClick = dropUnlessResumed {
                                    backStack.add(RouteB("123"))
                                }) {
                                    Text("Click to navigate")
                                }
                            }
                        }

                        is RouteB -> NavEntry(key) {
                            ContentBlue("Route id: ${key.id} ")
                        }

                        else -> {
                            error("Unknown route: $key")
                        }
                    }
                }
            )
        }
    }
}