Android/Kotlin

다이얼로그(Alert Dialog)

lipnus 2019. 4. 2. 11:17
반응형

다이얼로그(Alert Dialog) 띄우기


fun showDialog(){

val builder = AlertDialog.Builder(this)

builder.run {
setMessage("메시지")
setPositiveButton("OK") { dialog, which ->

}
setNegativeButton("Cancel") { dialog, which

}
}


builder.create().show()
}



setCancelable(false)

바깥 부분 눌러도 꺼지지 않게 하기




반응형

'Android > Kotlin' 카테고리의 다른 글

제네릭 함수  (0) 2019.04.19
칸이 차면 다음으로 넘어가는 EditText  (0) 2019.04.04
EditText addTextChangedListener에서 에러 표시  (0) 2019.03.19
EditText에 화페단위 콤마 표시  (1) 2019.03.18
ViewPager 예제  (0) 2019.03.14