สูตรกล่องโต้ตอบ

สูตรนี้แสดงวิธีแสดงปลายทางเป็นกล่องโต้ตอบ

วิธีการทำงาน

หากต้องการแสดงปลายทางเป็นกล่องโต้ตอบ คุณต้องทำ 2 สิ่งต่อไปนี้

  1. ใช้ DialogSceneStrategy: สร้างอินสแตนซ์ของ DialogSceneStrategy และส่งไปยังพารามิเตอร์ sceneStrategy ของ Composable NavDisplay

  2. เพิ่มข้อมูลเมตาไปยังปลายทาง: เพิ่ม DialogSceneStrategy.dialog() ไปยังข้อมูลเมตาของปลายทางที่ต้องการแสดงเป็นกล่องโต้ตอบ ซึ่งทำได้ในฟังก์ชัน entry นอกจากนี้ คุณยังส่งออบเจ็กต์ DialogProperties เพื่อปรับแต่งลักษณะการทำงานและลักษณะที่ปรากฏของกล่องโต้ตอบได้ด้วย

ในตัวอย่างนี้ RouteB ได้รับการกำหนดค่าให้เป็นกล่องโต้ตอบ เมื่อคุณไปยังส่วนต่างๆ จาก RouteA ไปยัง RouteB ระบบจะแสดง 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.dialog

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.DialogProperties
import androidx.lifecycle.compose.dropUnlessResumed
import androidx.navigation3.runtime.NavKey
import androidx.navigation3.runtime.entryProvider
import androidx.navigation3.runtime.rememberNavBackStack
import androidx.navigation3.scene.DialogSceneStrategy
import androidx.navigation3.ui.NavDisplay
import com.example.nav3recipes.content.ContentBlue
import com.example.nav3recipes.content.ContentGreen
import com.example.nav3recipes.ui.setEdgeToEdgeConfig
import kotlinx.serialization.Serializable

@Serializable
private data object RouteA : NavKey

@Serializable
private data class RouteB(val id: String) : NavKey

class DialogActivity : ComponentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        setEdgeToEdgeConfig()
        super.onCreate(savedInstanceState)
        setContent {
            val backStack = rememberNavBackStack(RouteA)
            val dialogStrategy = remember { DialogSceneStrategy<NavKey>() }

            NavDisplay(
                backStack = backStack,
                onBack = { backStack.removeLastOrNull() },
                sceneStrategies = listOf(dialogStrategy),
                entryProvider = entryProvider {
                    entry<RouteA> {
                        ContentGreen("Welcome to Nav3") {
                            Button(onClick = dropUnlessResumed {
                                backStack.add(RouteB("123"))
                            }) {
                                Text("Click to open dialog")
                            }
                        }
                    }
                    entry<RouteB>(
                        metadata = DialogSceneStrategy.dialog(
                            DialogProperties(windowTitle = "Route B dialog")
                        )
                    ) { key ->
                        ContentBlue(
                            title = "Route id: ${key.id}",
                            modifier = Modifier.clip(
                                shape = RoundedCornerShape(16.dp)
                            )
                        )
                    }
                }
            )
        }
    }
}