Intents એ મેસેજિંગ ઑબ્જેક્ટ્સ છે જેનો ઉપયોગ એક કમ્પોનેન્ટ પાસેથી ક્રિયા માટે વિનંતી કરવા માટે થાય છે — સૌથી સામાન્ય રીતે activities શરૂ કરવા માટે (સ્ક્રીન્સ વચ્ચે નેવિગેટ કરવા માટે), પણ services શરૂ કરવા, broadcasts મોકલવા અને apps વચ્ચે સંચાર કરવા માટે પણ. તે Android components કેવી રીતે ક્રિયાપ્રતિક્રિયા કરે છે તેનું મૂળાધાર છે.
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.
