juniorAndroid
What is Intent in Android?
Updated Apr 28, 2026
Short answer
Intent is used to perform actions like navigating between components.
Deep explanation
Intent is a messaging object used for communication between components such as activities and services. It can be explicit or implicit depending on whether the target component is specified.
Real-world example
Opening another screen or sharing data between apps.
Common mistakes
- Using implicit intents without proper filters.
Follow-up questions
- What is implicit intent?
- What is explicit intent?