Android Kotlin 일반 Intent 및 PendingIntent
1. IntentIntent는 Activity, Service, Broadcast, Contents Provider 컴포넌트를 시작시키는 message 객체이다. 일회성 시작인 경우 : startActivity(), startService()서비스를 인터페이스 하는 경우 : bindService()다른 앱도 수신해야하는 경우 : sendBroadcast, sendOrderedBroadcast() 명시적 인텐트 : 인텐트에 클래스 객체 컴포넌트 이름을 지정 var intent = Intent(this@MainActivity, SecondActivity::class.java)암시적 인텐트 : 인텐트에 action, data, category 으로 유형을 명시 var intent = Intent..
Android Kotlin
2024. 9. 24. 15:14