gpt4 book ai didi

Android Q - 从后台启动前台定位服务

转载 作者:行者123 更新时间:2023-12-04 00:22:34 30 4
gpt4 key购买 nike

我不确定在这种情况下应该采取什么行为。

在文档中它说:

An app is considered to be accessing location in the background unless one of the following conditions is satisfied:

  • An activity belonging to the app is visible.
  • The app is running a foreground service that has declared a foreground service type of location.


在 google 提供的示例中,他们使用了一个启动前台服务的 Activity 在前台 :

https://github.com/android/location-samples/tree/master/LocationUpdatesForegroundService

在我的情况下,一旦蓝牙设备连接到我的设备(使用 list 注册的广播接收器),我需要开始跟踪位置 - 这可能在后台,或者在应用程序终止之后)。

所以,我在 list 中声明服务,就像他们说的那样:
 <service
android:name=".MyForegroundService"
android:foregroundServiceType="location"
android:exported="false" />

问题是:

如果我的应用收到广播, 在后台/终止 - 如果我启动前台服务,是否考虑 在后台访问位置在前台访问位置 ?

我应该要求 ACCESS_BACKGROUND_LOCATION ?或 ACCESS_COARSE_LOCATION 在这种情况下应该足够了吗?

最佳答案

在 API 29 上,如果您有 android:foregroundServiceType"location" , 你不需要 ACCESS_BACKGROUND_LOCATION .在 Service 期间进行的任何位置访问正在运行被认为是“前台访问”。

但这假设您可以运行前台服务。您必须继续 user-initiated action某种意义上的。如果 Service已经在运行,那么它不会是一个问题; Service表示用户发起的 Action 的继续。如果您需要在 BT 设备连接时启动它,那么我不确定这是否符合条件。那可能行不通。 (如果您发现...请提出修改建议!)

需要 ACCESS_BACKGROUND_LOCATION 的应用程序示例权限将是监控您的 GPS 位置而没有 Activities 的权限。是可见的,没有 "location" -type 前台服务通知正在显示。在 Android Q 上,未经许可,这不会被允许持续很长时间(超过大约 30 秒)。

我相信操作系统也会分配 ACCESS_BACKGROUND_LOCATION到用户在位置权限对话框中选择“始终允许”的旧版应用程序。

关于Android Q - 从后台启动前台定位服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59523469/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com