kotlinで、アラートダイアログの書き方(ひな形)はこうです

                AlertDialog.Builder(this)
                    .setTitle("タイトル")
                    .setMessage("メッセージ")
                    .setPositiveButton("OK",null)
                    .show()

動画

あわせてご覧ください

 

    コメントを残す