คอมโพเนนต์ Dialog
จะแสดงข้อความป๊อปอัปหรือขอข้อมูลจากผู้ใช้ในเลเยอร์เหนือเนื้อหาหลักของแอป ซึ่งจะสร้างประสบการณ์ UI ที่รบกวนเพื่อดึงดูดความสนใจของผู้ใช้
กรณีการใช้งานของกล่องโต้ตอบมีดังนี้
- ยืนยันการดำเนินการของผู้ใช้ เช่น เมื่อลบไฟล์
- การขอข้อมูลจากผู้ใช้ เช่น ในแอปรายการสิ่งที่ต้องทำ
- แสดงรายการตัวเลือกสำหรับผู้ใช้ เช่น การเลือกประเทศในการตั้งค่าโปรไฟล์
ช่องโต้ตอบการแจ้งเตือน
Composable ของ AlertDialog
มี API เพื่อความสะดวกในการสร้าง
กล่องโต้ตอบธีมดีไซน์ Material AlertDialog
มีพารามิเตอร์ที่เฉพาะเจาะจงสำหรับการจัดการองค์ประกอบบางอย่างของกล่องโต้ตอบ ซึ่งรวมถึงรายการต่อไปนี้
title
: ข้อความที่ปรากฏที่ด้านบนของกล่องโต้ตอบtext
: ข้อความที่ปรากฏตรงกลางกล่องโต้ตอบicon
: กราฟิกที่ปรากฏที่ด้านบนของกล่องโต้ตอบonDismissRequest
: ฟังก์ชันที่เรียกใช้เมื่อผู้ใช้ปิดกล่องโต้ตอบ เช่น โดยการแตะนอกกล่องโต้ตอบdismissButton
: Composable ที่ทำหน้าที่เป็นปุ่มปิดconfirmButton
: คอมโพสิชันที่ทำหน้าที่เป็นปุ่มยืนยัน
ตัวอย่างต่อไปนี้ใช้ปุ่ม 2 ปุ่มในกล่องโต้ตอบการแจ้งเตือน โดยปุ่มหนึ่งจะปิดกล่องโต้ตอบ และอีกปุ่มหนึ่งจะยืนยันคําขอ
@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 หลักที่ส่งอาร์กิวเมนต์ไปยัง Composable ในลักษณะนี้
@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 ) } } } }
การติดตั้งใช้งานนี้จะปรากฏดังนี้
กล่องโต้ตอบที่ประกอบกันได้
Dialog
เป็น Composable พื้นฐานที่ไม่มีการจัดรูปแบบหรือ
สล็อตที่กำหนดไว้ล่วงหน้าสำหรับเนื้อหา เป็นคอนเทนเนอร์ที่ค่อนข้างตรงไปตรงมา
คุณควรเติมข้อมูลด้วยคอนเทนเนอร์ เช่น Card
ตัวอย่างมีดังต่อไปนี้
พารามิเตอร์ที่สำคัญของกล่องโต้ตอบ ได้แก่
onDismissRequest
: ฟังก์ชัน Lambda ที่เรียกใช้เมื่อผู้ใช้ปิดกล่องโต้ตอบproperties
: อินสแตนซ์ของDialogProperties
ที่มีขอบเขตเพิ่มเติมสำหรับการปรับแต่ง
ตัวอย่างพื้นฐาน
ตัวอย่างต่อไปนี้เป็นการใช้งานพื้นฐานของคอมโพสิเบิล Dialog
หมายเหตุ
โดยใช้ Card
เป็นคอนเทนเนอร์รอง หากไม่มีCard
Text
จะปรากฏขึ้นเดี่ยวๆ เหนือเนื้อหาหลักของแอป
@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, ) } } }
การติดตั้งใช้งานนี้จะปรากฏดังนี้ โปรดทราบว่าเมื่อเปิดกล่องโต้ตอบ เนื้อหาแอปหลักที่อยู่ด้านล่างจะมีสีเข้มและเป็นสีเทา ดังนี้
ตัวอย่างขั้นสูง
ต่อไปนี้เป็นการใช้งาน Dialog
composable ที่ขั้นสูงขึ้น ในกรณีนี้ คอมโพเนนต์จะใช้อินเทอร์เฟซที่คล้ายกับ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") } } } } } }
การใช้งานนี้จะปรากฏดังนี้