หยุดบริการที่ทำงานอยู่เบื้องหน้า
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
หากต้องการให้บริการที่ทำงานอยู่เบื้องหน้าหยุดทำงานในเบื้องหน้า คุณมี
2 ตัวเลือก คุณสามารถหยุดบริการหรือปล่อยให้บริการทำงานต่อไปได้ แต่ต้องนำออกจากเบื้องหน้า
คุณหยุดบริการที่ทำงานอยู่เบื้องหน้าได้ในลักษณะเดียวกับการหยุดบริการอื่นๆ บริการสามารถเรียกใช้เมธอด 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."]]