본문 바로가기
프로그래밍/Kotlin

코틀린 버튼 클릭시 특정 사이트로 이동

by Youngs_ 2021. 6. 29.
button.setOnClickListener {
            var intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://www.naver.com"))
            startActivity(intent)
        }

버튼 클릭시 네이버로 이동하는 코드이다.

댓글