Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created December 19, 2023 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/fcb6f2f86ccf544805d6156c33716f5b to your computer and use it in GitHub Desktop.
Save codeforfun-jp/fcb6f2f86ccf544805d6156c33716f5b to your computer and use it in GitHub Desktop.
Dialog Full Screen
class MyDialogFragment : DialogFragment() {
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val dialog = activity?.let {
AlertDialog.Builder(it, R.style.DialogTheme)
.setTitle("タイトル")
.setMessage("ここにメッセージが入ります。ここにメッセージが入ります。")
.setPositiveButton("OK") { _, _ -> }
.create()
}
return dialog ?: throw IllegalStateException("アクティビティがNullです。")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment