Intents messaging objects हैं जिनका उपयोग किसी component से कार्य का अनुरोध करने के लिए किया जाता है — सबसे सामान्यतः activities शुरू करने के लिए (screens के बीच navigate करना), लेकिन services शुरू करने, broadcasts भेजने और apps के बीच संवाद करने के लिए भी। ये Android components के बीच interaction के लिए मौलिक हैं।
Intents क्या करते हैं
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.
