jeongiin / Lookie_Android_Study

Lookie Android Part kotlin study
0 stars 0 forks source link

안드로이드 4대 구성요소 - Activity Action #6

Open jeongiin opened 5 years ago

jeongiin commented 5 years ago

Main Activity

//권한 묻는 코드 추가

button4.setOnClickListener { view -> 
            var uri = Uri.parse("tel:0000000000")
            var intent = Intent(Intent.ACTION_CALL,uri)
            startActivity(intent)
        }