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)
