로또 번호 생성기 만들기 private val clearButton by lazy { findViewById(R.id.btn_clear) } private val addButton by lazy { findViewById(R.id.btn_add) } private val runButton by lazy { findViewById(R.id.btn_run) } private val numPick by lazy { findViewById(R.id.np_num) } clearButton by lazy{} : 초기화 버튼(btn_clear) 지정addButton by lazy{} : 번호 추가하기 버튼(btn_add) 지정runButton by lazy{} : 자동 생성 시작 버튼(btn_run) 지정n..