अन्य ऐप्लिकेशन के साथ इंटरैक्ट करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
आम तौर पर, Android ऐप्लिकेशन में कई ऐक्टिविटी होती हैं. हर गतिविधि में एक यूज़र इंटरफ़ेस दिखता है. इसकी मदद से, उपयोगकर्ता कोई खास काम कर सकता है. जैसे, मैप देखना या फ़ोटो खींचना.
उपयोगकर्ता को एक गतिविधि से दूसरी गतिविधि पर ले जाने के लिए, आपके ऐप्लिकेशन को Intent
का इस्तेमाल करना होगा. इससे, आपके ऐप्लिकेशन के "इंटेंट" के बारे में पता चलता है. जब startActivity()
जैसे किसी तरीके से सिस्टम को Intent
पास किया जाता है, तो सिस्टम सही ऐप्लिकेशन कॉम्पोनेंट की पहचान करने और उसे शुरू करने के लिए Intent
का इस्तेमाल करता है. इंटेंट का इस्तेमाल करके, आपके ऐप्लिकेशन को किसी दूसरे ऐप्लिकेशन में मौजूद गतिविधि शुरू करने की अनुमति भी मिलती है.
किसी खास Activity
इंस्टेंस को शुरू करने के लिए, Intent
एक्सप्लिसिट हो सकता है. इसके अलावा, "फ़ोटो कैप्चर करें" जैसी किसी भी कार्रवाई को मैनेज करने वाले कॉम्पोनेंट को शुरू करने के लिए, Intent
इंप्लिसिट हो सकता है.
इस गाइड में दिए गए विषयों से, आपको Intent
का इस्तेमाल करके, दूसरे ऐप्लिकेशन के साथ कुछ बुनियादी इंटरैक्शन करने का तरीका पता चलता है. जैसे, कोई दूसरा ऐप्लिकेशन शुरू करना, उस ऐप्लिकेशन से नतीजा पाना, और अपने ऐप्लिकेशन को दूसरे ऐप्लिकेशन के इंटेंट का जवाब देने में सक्षम बनाना.
विषय
- उपयोगकर्ता को किसी दूसरे ऐप्लिकेशन पर भेजना
- इसमें, किसी कार्रवाई को पूरा करने वाले अन्य ऐप्लिकेशन को लॉन्च करने के लिए, इंप्लिसिट इंटेंट बनाने का तरीका बताया गया है.
- किसी गतिविधि का नतीजा पाना
- इससे आपको किसी दूसरी गतिविधि को शुरू करने और उससे नतीजा पाने का तरीका पता चलता है.
- दूसरे ऐप्लिकेशन को अपनी गतिविधि शुरू करने की अनुमति देना
- इससे आपको यह जानने में मदद मिलती है कि अपने ऐप्लिकेशन में मौजूद ऐक्टिविटी को, दूसरे ऐप्लिकेशन के इस्तेमाल के लिए कैसे खोलें. इसके लिए, इंटेंट फ़िल्टर तय किए जाते हैं. इनसे उन इंटेंट के बारे में पता चलता है जिन्हें आपका ऐप्लिकेशन स्वीकार करता है.
- Android पर पैकेज की जानकारी दिखने की सुविधा को फ़िल्टर करना
- अगर डिफ़ॉल्ट रूप से अन्य ऐप्लिकेशन आपके ऐप्लिकेशन में नहीं दिख रहे हैं, तो उन्हें दिखाने का तरीका बताता है. यह सिर्फ़ उन ऐप्लिकेशन पर लागू होता है जो Android 11 (एपीआई लेवल 30) या उसके बाद के वर्शन को टारगेट करते हैं.
- पैकेज को सीमित तौर पर दिखाते हुए, इस्तेमाल के सामान्य उदाहरणों को पूरा करना
- ऐप्लिकेशन के कई तरह के इंटरैक्शन दिखाता है. इसके लिए, आपको अपने ऐप्लिकेशन की मेनिफ़ेस्ट फ़ाइल को अपडेट करना पड़ सकता है, ताकि दूसरे ऐप्लिकेशन आपके ऐप्लिकेशन को दिख सकें. यह सुविधा सिर्फ़ उन ऐप्लिकेशन पर लागू होती है जो Android 11 (एपीआई लेवल 30) या उसके बाद के वर्शन को टारगेट करते हैं.
- डिवाइस में मौजूद Android कंटेनर में लोड करने की सीमा तय करना
- इसमें, Play Store ऐप्लिकेशन को सिम्युलेट किए गए Android एनवायरमेंट ऐप्लिकेशन में लोड होने से रोकने का तरीका बताया गया है. इसे डिवाइस में मौजूद Android कंटेनर भी कहा जाता है.
इस पेज पर दिए गए विषयों के बारे में ज़्यादा जानकारी के लिए, ये लेख पढ़ें:
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-02-10 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-02-10 (UTC) को अपडेट किया गया."],[],[],null,["# Interact with other apps\n\nAn Android app typically has several [activities](/guide/components/activities). Each activity displays a\nuser interface that lets the user perform a specific task, such as viewing a map or taking a photo.\nTo take the user from one activity to another, your app must use an [Intent](/reference/android/content/Intent) to define your app's \"intent\" to do something. When you pass an\n`Intent` to the system with a method\nsuch as [startActivity()](/reference/android/app/Activity#startActivity(android.content.Intent)),\nthe system uses the `Intent` to identify and start the appropriate app component. Using intents\neven lets your app start an activity that is contained in a separate app.\n\nAn `Intent` can be *explicit* , to start\na specific [Activity](/reference/android/app/Activity) instance,\nor *implicit*, to start any\ncomponent that can handle the intended action, such as \"capture a photo.\"\n\nThe topics in this guide show you how to use an `Intent` to perform some basic\ninteractions with other apps, such as starting another app, receiving a result from that app, and\nmaking your app able to respond to intents from other apps.\n\nTopics\n------\n\n**[Sending the user to another app](/training/basics/intents/sending)**\n: Shows you how to create implicit intents to launch other apps that can perform an\n action.\n\n**[Get a result from an activity](/training/basics/intents/result)**\n: Shows you how to start another activity and receive a result from the activity.\n\n**[Allow other apps to start your activity](/training/basics/intents/filters)**\n: Shows you how to make activities in your app open for use by other apps by defining\n intent filters that declare the implicit intents your app accepts.\n\n**[Package visibility filtering on Android](/training/basics/intents/package-visibility)**\n: Shows you how to make other apps visible to your app if they\n aren't visible by default. Applies only to apps that target Android 11\n (API level 30) or higher.\n\n**[Fulfill common use cases while\nhaving limited package visibility](/training/basics/intents/package-visibility-use-cases)**\n: Shows several types of app interactions that might require you to update\n your app's manifest file so that other apps are visible to your app.\n Applies only to apps that target Android 11 (API level 30) or higher.\n\n**[Limit loading in on-device Android containers](/training/basics/intents/limit-play-loading)**\n: Shows you how to limit your Play Store app from loading in a simulated\n Android environment app, also known as an on-device Android container.\n\nFor additional information about the topics on this page, see the following:\n\n- [Sharing simple data](/training/sharing)\n- [Sharing files](/training/secure-file-sharing)\n- [Integrating Application with Intents](http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html) blog post\n- [Intents and Intent\n Filters](/guide/components/intents-filters)"]]