Intent 是消息传递对象,用于向组件请求操作 — 最常见的是启动 activity(在屏幕之间导航),但也用于启动服务、发送广播和应用间通信。它们是 Android 组件交互的基础。
Intent 的作用
An INTENT is a message describing an operation to perform:
→ START an ACTIVITY (open another screen, in your app or another app)
→ START a SERVICE (begin background work)
→ DELIVER a BROADCAST (system/app-wide event)
→ carry DATA (extras) and specify the target/action
→ The mechanism for components to request actions and communicate.
显式 Intent 与隐式 Intent
intent = Intent(, DetailActivity::.java)
intent.putExtra(, )
startActivity(intent)
intent = Intent(Intent.ACTION_VIEW, Uri.parse())
startActivity(intent)
