Intents são objetos de mensagem usados para solicitar uma ação de um componente — geralmente para iniciar atividades (navegar entre telas), mas também para iniciar serviços, enviar broadcasts e comunicar entre apps. Eles são fundamentais para como os componentes do Android interagem.
O que Intents fazem
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.
