-
-
Save codeforfun-jp/5f22a8a2cd0470bf29123260414917d1 to your computer and use it in GitHub Desktop.
Android Studio AlertDialog Customize - Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyDialogFragment : DialogFragment() { | |
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { | |
// タイトル | |
val titleView = TextView(activity) | |
titleView.text = "タイトル" | |
titleView.textSize = 24f | |
titleView.setTextColor(Color.WHITE) | |
titleView.setBackgroundColor(resources.getColor(R.color.blue)) | |
titleView.setPadding(20, 20, 20, 20) | |
titleView.gravity = Gravity.CENTER | |
// メッセージ | |
val msgView = TextView(activity) | |
msgView.text = "ここにメッセージを入力します。ここにメッセージを入力します。ここにメッセージを入力します。" | |
msgView.textSize = 16f | |
msgView.setTextColor(Color.BLACK) | |
msgView.setPadding(20, 20, 20, 40) | |
val dialog = activity?.let { | |
AlertDialog.Builder(it) | |
.setCustomTitle(titleView) | |
.setView(msgView) | |
.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