Intent sono oggetti di messaggistica utilizzati per richiedere un'azione da un componente — più comunemente per avviare attività (navigare tra le schermate), ma anche per avviare servizi, inviare broadcast e comunicare tra app. Sono fondamentali per il modo in cui i componenti Android interagiscono.
Cosa fanno gli 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.
