解決Android 10/Android Q手機在後臺無法正常定位問題
阿新 • • 發佈:2020-01-07
Android 10 在2019年9月份正式釋出,帶來了一個非常重大的GPS許可權改變。為使用者提供了 僅在使用此應用時允許。一旦使用者選擇“僅在使用此應用時允許”,就會導致APP在後臺或者鎖屏時候無法正常記錄GPS軌跡,這個對像滴滴出行、共享單車、跑步軟體影響非常的大。
針對這個變化,Google也給出了新的 解決方案。
第一步:升級SDK
修改build.gradle,升級APP的 compileSdkVersion 和 targetSdkVersion。
android { compileSdkVersion 29 defaultConfig { targetSdkVersion 29 } }
第二步:增加後臺定位許可權
修改 AndroidManifest.xml 檔案,增加 ACCESS_BACKGROUND_LOCATION許可權,並且為對應的服務增加 android:foregroundServiceType="location"。
<manifest > <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <application> <service android:name=".ExampleService" android:foregroundServiceType="location" /> </application> </manifest>
第三步:申請後臺定位許可權
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) { ActivityCompat.requestPermissions(this,arrayOf(Manifest.permission.ACCESS_COARSE_LOCATION,ACCESS_BACKGROUND_LOCATION ),101) } else { ActivityCompat.requestPermissions(this,arrayOf(Manifest.permission.ACCESS_COARSE_LOCATION),101) }
通過以上方法,就可以獲取使用者是否允許APP後臺定位,如果使用者不允許,就會提示下面的對話方塊。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。