안드로이드 스튜디오 Dialog 띄우는 방법
알림창의 생성자는 접근 제한자가 protected로 선언되어 객체를 직접 생성할 수 없다. 그 대신 AlertDialog.Builder를 이용하여 알림 창을 만들어야 한다. AlertDialog.Builder(this).run{ setTitle("타이틀") setMessage("메세지") setPositiveButton("예",null) setNegativeButton("아니오",null) setNeutralButton("더 보기",null) show()//show()를 꼭 해야함! } 위의 코드처럼 만들어주면 알림 창이 뜬다! 참 쉽다! 만약 알림창에 목록을 출력하고 싶다면? 위와 비슷하지만 조금 다르다! val items = arrayOf("코알라","된장","고구마","치킨") AlertDialog..
컴퓨터 공부/Kotlin
2022. 4. 27. 21:59