फ़ोरग्राउंड सेवा को रोकना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अगर आपको फ़ोरग्राउंड सेवा को फ़ोरग्राउंड में चलने से रोकना है, तो आपके पास दो विकल्प हैं. आपके पास सेवा को बंद करने या उसे चालू रखने का विकल्प होता है. हालांकि, चालू रखने पर उसे फ़ोरग्राउंड से हटा दिया जाता है.
फ़ोरग्राउंड सेवा को उसी तरीके से बंद किया जा सकता है जिस तरीके से किसी भी सेवा को बंद किया जाता है. यह सेवा, अपने stopSelf()
तरीके को कॉल कर सकती है. इसके अलावा, कोई अन्य कॉम्पोनेंट stopService()
को कॉल करके इसे बंद कर सकता है. अगर फ़ोरग्राउंड में सेवा चालू रहने के दौरान उसे बंद कर दिया जाता है, तो उसकी सूचना हटा दी जाती है.
किसी सेवा को फ़ोरग्राउंड से हटाने के लिए, सेवा के अंदर से stopForeground(int)
को कॉल करें. इस तरीके में एक बूलियन होता है, जिससे यह पता चलता है कि स्टेटस बार से सूचना को हटाना है या नहीं. सेवा चलती रहती है, लेकिन
अब यह फ़ोरग्राउंड सेवा नहीं है.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-08-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-08-27 (UTC) को अपडेट किया गया."],[],[],null,["If you want a foreground service to stop running in the foreground, you have\ntwo options. You can stop the service, or you can leave the service\nrunning but remove it from the foreground.\n\nYou can stop a foreground service\n[the same way you would stop any service](/develop/background-work/services#Stopping). The service can\ncall its own [`stopSelf()`](/reference/android/app/Service#stopSelf()) method, or another component can stop it\nby calling [`stopService()`](/reference/android/content/Context#stopService(android.content.Intent)). If you stop the service while it runs\nin the foreground, its notification is removed.\n\nTo remove a service from the foreground, call\n[`stopForeground(int)`](/reference/android/app/Service#stopForeground(int))\nfrom inside the service. This method takes a boolean, which indicates whether to\nremove the status bar notification as well. The service continues to run, but\nit is no longer a foreground service."]]