Skip to content

alfredsty/MyLotto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyLotto

구현 목록

메인 화면(activity_main.xml)

image

로또 번호 생성 리스트(activity_result.xml)

image

CODE REVIEW

로또 번호 생성 버튼을 눌렀을 때

binding.btnNew.setOnClickListener {
			if (binding.cbIsSame.isChecked) {
				getLottoNumber1()
			} else {
				getLottoNumber2()
			}
			binding.btnSave.isEnabled = true
		}
  • 중복제거를 한 함수와 중복이 가능하게 한 함수를 만들어 cbIsSame 라디오 버튼이 클릭되어 있으면 중복이 가능한 함수를 실행한다. 그리고 Save버튼을 누를 수 있게 binding.btnSave.isEnabled = true로 바꿔준다.

getLottoNumber1함수(중복 가능)

getLottoNumber2함수(중복 불가능)

ResultActivity

Skill

Kotlin

Tools

Android Studio

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages