從 Android 14 (API 級別 34) 開始,您必須為每項前景服務聲明適當的服務類型。也就是說,您必須在應用程式資訊清單中宣告服務類型,並要求該類型適用的前景服務權限 (除了要求 FOREGROUND_SERVICE 權限外)。此外,視前景服務類型而定,您可能必須先要求執行階段權限,才能啟動服務。
相機
- 在
android:foregroundServiceType下的資訊清單中聲明的前景服務類型 camera- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_CAMERA- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_CAMERA- 執行階段必要條件
要求並取得
CAMERA執行階段權限- 說明
繼續在背景存取相機,例如:支援多工處理的視訊通訊應用程式。
已連結的裝置
- 要在下列資訊清單中宣告的前景服務類型
android:foregroundServiceTypeconnectedDevice- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_CONNECTED_DEVICE- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_CONNECTED_DEVICE- 執行階段必要條件
至少必須符合下列其中一項條件:
在資訊清單中至少宣告下列其中一項權限:
至少要求下列其中一項執行階段權限,並獲得授予:
- 說明
與需要藍牙、NFC、IR、USB 或網路連線的外部裝置互動。
- 替代選項
如果您的應用程式需要持續將資料傳輸至外部裝置,建議改用隨附裝置管理工具。使用隨附裝置狀態 API,讓應用程式在隨附裝置在範圍內時持續執行。
如果應用程式需要掃描藍牙裝置,建議改用 Bluetooth 掃描 API。
同步處理資料
- 在以下位置的資訊清單中聲明前景服務類型
android:foregroundServiceTypedataSync- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_DATA_SYNC- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_DATA_SYNC- 執行階段必要條件
- 無
- 說明
資料移轉作業,例如:
- 上傳或下載資料
- 備份與還原作業
- 匯入或匯出作業
- 擷取資料
- 本機檔案處理
- 透過網路在裝置和雲端之間轉移資料
- 替代方案
詳情請參閱「資料同步前景服務的替代方案」。
健康
- 要在資訊清單中宣告的前景服務類型
android:foregroundServiceTypehealth- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_HEALTH- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_HEALTH- 執行階段必要條件
至少必須符合下列其中一項條件:
在資訊清單中宣告
HIGH_SAMPLING_RATE_SENSORS權限。至少要求下列其中一項執行階段權限,並獲得授予:
- 說明
在健身類別中,任何用於支援應用程式的長時間執行用途,例如:運動追蹤器。
位置
- 要在資訊清單中宣告的前景服務類型
android:foregroundServiceTypelocation- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_LOCATION- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_LOCATION- 執行階段必要條件
使用者必須已啟用定位服務,且應用程式必須獲得下列至少一項執行階段權限:
- 說明
需要位置資訊存取權的長時間執行使用案例,如:導航和位置分享。
- 替代選項
如果應用程式需要在使用者抵達特定地點時觸發,建議改用 地理圍欄 API。
媒體
- 在以下位置的資訊清單中聲明前景服務類型
android:foregroundServiceTypemediaPlayback- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_MEDIA_PLAYBACK- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_MEDIA_PLAYBACK- 執行階段必要條件
- 無
- 說明
在背景中繼續播放音訊或視訊。支援 Android TV 的數位錄影 (DVR) 功能。
- 替代方案
處理中的媒體項目
- 要在下列資訊清單中宣告的前景服務類型
android:foregroundServiceTypemediaProcessing- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_MEDIA_PROCESSING- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_MEDIA_PROCESSING- 執行階段必要條件
- 無
- 說明
這項服務可在媒體資產上執行耗時的作業,例如將媒體轉換為其他格式。系統會允許這項服務執行的時間有限,在一般情況下,這個時間限制是每 24 小時 6 小時。(這項限制適用於應用程式的所有
mediaProcessing前景服務)。在下列情況下,應用程式應手動停止媒體處理服務:
- 轉碼作業完成或達到失敗狀態時,請讓服務呼叫
Service.stopForeground()和Service.stopSelf(),以便完全停止服務。
- 轉碼作業完成或達到失敗狀態時,請讓服務呼叫
如果逾時,系統會呼叫服務的
Service.onTimeout(int, int)方法。此時,服務有幾秒的時間可以呼叫Service.stopSelf()。如果服務未呼叫Service.stopSelf(),系統會發生 ANR,並顯示以下錯誤訊息:「<fgs_type> 的前景服務未在逾時期限內停止:<component_name>」。注意:
Service.onTimeout(int, int)不適用於 Android 14 以下版本。在執行這些版本的裝置上,如果媒體處理服務達到逾時期限,系統會立即快取應用程式。因此,應用程式不應等待逾時通知。而是應盡快終止前景服務,或將其變更為背景服務。
媒體投影
- 在以下位置的資訊清單中聲明前景服務類型
android:foregroundServiceTypemediaProjection- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_MEDIA_PROJECTION- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION- 執行階段必要條件
請先呼叫
createScreenCaptureIntent()方法,再啟動前景服務。這麼做會向使用者顯示權限通知,使用者必須授予權限,您才能建立服務。建立前景服務後,您可以呼叫
MediaProjectionManager.getMediaProjection()。- 說明
使用
MediaProjectionAPI 將內容投影到非主要螢幕或外部裝置。此類內容不侷限於媒體內容。- 替代方案
如要將媒體串流至其他裝置,請使用 Google Cast SDK。
麥克風
- 在以下位置的資訊清單中聲明前景服務類型
android:foregroundServiceTypemicrophone- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_MICROPHONE- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_MICROPHONE- 執行階段必要條件
要求並取得
RECORD_AUDIO執行階段權限。- 說明
繼續從背景擷取麥克風,如:錄音工具或通訊應用程式。
撥打電話
- 在以下位置的資訊清單中聲明前景服務類型
android:foregroundServiceTypephoneCall- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_PHONE_CALL- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_PHONE_CALL- 執行階段必要條件
至少必須符合下列其中一項條件:
- 應用程式已在資訊清單檔案中宣告
MANAGE_OWN_CALLS權限。
- 應用程式已在資訊清單檔案中宣告
- 應用程式是透過
ROLE_DIALER角色成為預設撥號應用程式。
- 應用程式是透過
- 說明
使用
ConnectionServiceAPI 繼續目前的通話。- 替代方案
如需撥打電話、視訊或 VoIP 通話,請考慮使用
android.telecom程式庫。建議使用
CallScreeningService過濾來電。
遠端通訊
- 要在下列資訊清單中宣告的前景服務類型
android:foregroundServiceTyperemoteMessaging- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_REMOTE_MESSAGING- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_REMOTE_MESSAGING- 執行階段必要條件
- 無
- 說明
- 在裝置之間轉移簡訊。協助使用者在切換裝置時,繼續編輯訊息。
短程服務
- Foreground service type to declare in manifest under
android:foregroundServiceTypeshortService- Permission to declare in your manifest
- None
- Constant to pass to
startForeground() FOREGROUND_SERVICE_TYPE_SHORT_SERVICE- Runtime prerequisites
- None
- Description
Quickly finish critical work that cannot be interrupted or postponed.
This type has some unique characteristics:
- Can only run for a short period of time (about 3 minutes).
- No support for sticky foreground services.
- Cannot start other foreground services.
- Doesn't require a type-specific permission, though it still
requires the
FOREGROUND_SERVICEpermission. - A
shortServicecan only change to another service type if the app is currently eligible to start a new foreground service. - A foreground service can change its type to
shortServiceat any time, at which point the timeout period begins.
The timeout for shortService begins from the moment that
Service.startForeground()is called. The app is expected to callService.stopSelf()orService.stopForeground()before the timeout occurs. Otherwise, the newService.onTimeout()is called, giving apps a brief opportunity to callstopSelf()orstopForeground()to stop their service.A short time after
Service.onTimeout()is called, the app enters a cached state and is no longer considered to be in the foreground, unless the user is actively interacting with the app. A short time after the app is cached and the service has not stopped, the app receives an ANR. The ANR message mentionsFOREGROUND_SERVICE_TYPE_SHORT_SERVICE. For these reasons, it's considered best practice to implement theService.onTimeout()callback.The
Service.onTimeout()callback doesn't exist on Android 13 and lower. If the same service runs on such devices, it doesn't receive a timeout, nor does it ANR. Make sure that your service stops as soon as it finishes the processing task, even if it hasn't received theService.onTimeout()callback yet.It's important to note that if the timeout of the
shortServiceis not respected, the app will ANR even if it has other valid foreground services or other app lifecycle processes running.If an app is visible to the user or satisfies one of the exemptions that allow foreground services to be started from the background, calling
Service.StartForeground()again with theFOREGROUND_SERVICE_TYPE_SHORT_SERVICEparameter extends the timeout by another 3 minutes. If the app isn't visible to the user and doesn't satisfy one of the exemptions, any attempt to start another foreground service, regardless of type, causes aForegroundServiceStartNotAllowedException.If a user disables battery optimization for your app, it's still affected by the timeout of shortService FGS.
If you start a foreground service that includes the
shortServicetype and another foreground service type, the system ignores theshortServicetype declaration. However, the service must still adhere to the prerequisites of the other declared types. For more information, see the Foreground services documentation.
特殊用途
- 要在資訊清單中宣告的前景服務類型
android:foregroundServiceTypespecialUse- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_SPECIAL_USE- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_SPECIAL_USE- 執行階段必要條件
- 無
- 說明
包含其他未涵蓋的有效前景服務用途 前景服務類型
除了宣告
FOREGROUND_SERVICE_TYPE_SPECIAL_USE之外, 前景服務類型,則開發人員應在 資訊清單。方法是指定<property><service>元素。這些值和對應的用途 在 Google Play 管理中心提交應用程式時進行審查使用 這類案例採用形式不拘,請務必提供充分的資訊 相關資訊,以便審查人員瞭解您必須使用specialUse的原因 類型。<service android:name="fooService" android:foregroundServiceType="specialUse"> <property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE" android:value="explanation_for_special_use"/> </service>
不受規範的系統
- 要在資訊清單中宣告的前景服務類型
android:foregroundServiceTypesystemExempted- 在資訊清單中宣告的權限
FOREGROUND_SERVICE_SYSTEM_EXEMPTED- 要傳遞至
startForeground()的常數 FOREGROUND_SERVICE_TYPE_SYSTEM_EXEMPTED- 執行階段必要條件
- 無
- 說明
系統應用程式和特定系統整合的預留項目,以便其繼續使用前景服務。
如要使用此類型,應用程式必須至少符合以下其中一項條件:
- 裝置處於展示模式狀態
- 應用程式為裝置擁有者
- 應用程式為分析器擁有者
- 具有
ROLE_EMERGENCY角色的安全應用程式 - 裝置管理員應用程式
- 具有
SCHEDULE_EXACT_ALARM或USE_EXACT_ALARM權限的應用程式 VPN 應用程式 (透過「設定」>「網路和網際網路」>「VPN」進行設定)
否則,若宣告此類型將會導致系統擲回
ForegroundServiceTypeNotAllowedException。
Google Play 對於使用前景服務類型的政策違規處置
如果應用程式指定 Android 14 以上版本為目標,您就需要在 Play 管理中心的「應用程式內容」頁面 (依序點選「政策」>「應用程式內容」) 中,聲明所使用的任何前景服務類型。如要進一步瞭解如何在 Play 管理中心聲明前景服務類型,請參閱「瞭解前景服務和全螢幕意圖規定」。