对话框

Dialog 组件在主应用程序内容层之上显示弹出消息或请求用户输入。它创建了一种中断式 UI 体验来吸引用户注意力。该组件位于 Dialog

对话框的一些用例如下:

  • 确认用户操作,例如删除文件时。
  • 请求用户输入,例如在待办事项应用程序中。
  • 显示用户选择选项列表,例如在个人资料设置中选择国家/地区。
A dialog populated with text and icons.
图 1. 一个包含文本和图标的对话框示例。

警告对话框

AlertDialog 可组合项提供了一个方便的 API,用于创建采用 Material Design 主题的对话框。 AlertDialog 具有用于处理对话框特定元素的特定参数。其中包括以下内容:

  • title:显示在对话框顶部的文本。
  • text:显示在对话框中心的文本。
  • icon:显示在对话框顶部的图形。
  • onDismissRequest:用户关闭对话框时(例如,点击对话框外部)调用的函数。
  • dismissButton:用作关闭按钮的可组合项。
  • confirmButton:用作确认按钮的可组合项。

以下示例在警告对话框中实现了两个按钮,一个用于关闭对话框,另一个用于确认其请求。

@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun AlertDialogExample(
    onDismissRequest: () -> Unit,
    onConfirmation: () -> Unit,
    dialogTitle: String,
    dialogText: String,
    icon: ImageVector,
) {
    AlertDialog(
        icon = {
            Icon(icon, contentDescription = "Example Icon")
        },
        title = {
            Text(text = dialogTitle)
        },
        text = {
            Text(text = dialogText)
        },
        onDismissRequest = {
            onDismissRequest()
        },
        confirmButton = {
            TextButton(
                onClick = {
                    onConfirmation()
                }
            ) {
                Text("Confirm")
            }
        },
        dismissButton = {
            TextButton(
                onClick = {
                    onDismissRequest()
                }
            ) {
                Text("Dismiss")
            }
        }
    )
}

此实现意味着父可组合项以这种方式将参数传递给子可组合项

@Composable
fun DialogExamples() {
    // ...
    val openAlertDialog = remember { mutableStateOf(false) }

    // ...
        when {
            // ...
            openAlertDialog.value -> {
                AlertDialogExample(
                    onDismissRequest = { openAlertDialog.value = false },
                    onConfirmation = {
                        openAlertDialog.value = false
                        println("Confirmation registered") // Add logic here to handle confirmation.
                    },
                    dialogTitle = "Alert dialog example",
                    dialogText = "This is an example of an alert dialog with buttons.",
                    icon = Icons.Default.Info
                )
            }
        }
    }
}

此实现如下所示

An open alert dialog that has both a dismiss and confirm button.
图 2. 带有按钮的警告对话框。

Dialog 可组合项

Dialog 是一个基本的可组合项,不提供任何样式或预定义的内容插槽。它是一个相对简单的容器,您应该使用 Card 等容器填充它。以下是对话框的一些关键参数:

  • onDismissRequest:用户关闭对话框时调用的 Lambda 表达式。
  • propertiesDialogProperties 的一个实例,它提供了更多自定义范围。

基本示例

以下示例是 Dialog 可组合项的基本实现。请注意,它使用 Card 作为辅助容器。如果没有 CardText 组件将单独显示在主应用程序内容上方。

@Composable
fun MinimalDialog(onDismissRequest: () -> Unit) {
    Dialog(onDismissRequest = { onDismissRequest() }) {
        Card(
            modifier = Modifier
                .fillMaxWidth()
                .height(200.dp)
                .padding(16.dp),
            shape = RoundedCornerShape(16.dp),
        ) {
            Text(
                text = "This is a minimal dialog",
                modifier = Modifier
                    .fillMaxSize()
                    .wrapContentSize(Alignment.Center),
                textAlign = TextAlign.Center,
            )
        }
    }
}

此实现如下所示。请注意,当对话框打开时,其下方的主应用程序内容会变暗并变灰。

A dialog that contains nothing other than a label.
图 3. 最小对话框。

高级示例

以下是 Dialog 可组合项的更高级实现。在这种情况下,组件手动实现了类似于上面 AlertDialog 示例的界面。

@Composable
fun DialogWithImage(
    onDismissRequest: () -> Unit,
    onConfirmation: () -> Unit,
    painter: Painter,
    imageDescription: String,
) {
    Dialog(onDismissRequest = { onDismissRequest() }) {
        // Draw a rectangle shape with rounded corners inside the dialog
        Card(
            modifier = Modifier
                .fillMaxWidth()
                .height(375.dp)
                .padding(16.dp),
            shape = RoundedCornerShape(16.dp),
        ) {
            Column(
                modifier = Modifier
                    .fillMaxSize(),
                verticalArrangement = Arrangement.Center,
                horizontalAlignment = Alignment.CenterHorizontally,
            ) {
                Image(
                    painter = painter,
                    contentDescription = imageDescription,
                    contentScale = ContentScale.Fit,
                    modifier = Modifier
                        .height(160.dp)
                )
                Text(
                    text = "This is a dialog with buttons and an image.",
                    modifier = Modifier.padding(16.dp),
                )
                Row(
                    modifier = Modifier
                        .fillMaxWidth(),
                    horizontalArrangement = Arrangement.Center,
                ) {
                    TextButton(
                        onClick = { onDismissRequest() },
                        modifier = Modifier.padding(8.dp),
                    ) {
                        Text("Dismiss")
                    }
                    TextButton(
                        onClick = { onConfirmation() },
                        modifier = Modifier.padding(8.dp),
                    ) {
                        Text("Confirm")
                    }
                }
            }
        }
    }
}

此实现如下所示

A dialog with a photo of Mount Feathertop, Victoria. Below the image are a dismiss button and a confirm button.
图 4. 包含图像的对话框。

其他资源