Customize Dialog1 Android Custom Dialog 만들기 간단하게 만들 수 있는 AlertDialog 와 아쉬운 점 보통 Android 에서 간단한 Dialog 를 구현하려면 AlertDialog class 를 이용하여 구현 할 수 있다. val dialog = AlertDialog.Builder(this) .setTitle("제목") .setIcon(R.mipmap.ic_launcher) .setMessage("뭘 해볼까?") .setPositiveButton("OK" ) { dialog, which -> // TODO: do something! } .setNegativeButton("Cancel") { dialog, which -> // TODO: do something! } .create() dialog.show() 이 코드를 실행하면 이런 화면을 Dia.. 2024. 1. 4. 이전 1 다음