服务内 gps 的 requestPermissions()。错误:“位置提供程序需要 ACCESS_FINE_LOCATION 权限。”
Posted
技术标签:
【中文标题】服务内 gps 的 requestPermissions()。错误:“位置提供程序需要 ACCESS_FINE_LOCATION 权限。”【英文标题】:requestPermissions() for gps inside a service . Error:"location provider requires ACCESS_FINE_LOCATION permission." 【发布时间】:2016-08-15 09:20:07 【问题描述】:我面临的问题是通过我正在编写的服务向应用程序授予 gps 权限。 我尝试找到一个示例来实现这一点,示例显示在 Activity 中编写一个 gpslocation 查找器,但在这种情况下,我想在服务中实现它。
服务代码如下:
public class TravelService extends Service
private LocationManager locManager;
private LocationListener locListener;
@Override
public void onCreate()
super.onCreate();
locManager = (LocationManager) getSystemService(LOCATION_SERVICE);
locListener = new LocationListener()
@Override
public void onLocationChanged(Location location)
locManager.requestLocationUpdates("gps", 5000, 100, locListener);
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
@Override
public void onProviderEnabled(String provider)
@Override
public void onProviderDisabled(String provider)
;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M)
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED)
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
locManager.requestLocationUpdates("gps", 5000, 100, locListener);
Toast.makeText(this, "Service Created", Toast.LENGTH_LONG).show();
@Override
public int onStartCommand(Intent intent, int flags, int startId)
locManager.requestLocationUpdates("gps", 5000, 100, locListener);
Toast.makeText(this,"Service Started",Toast.LENGTH_LONG).show();
return super.onStartCommand(intent, flags, startId);
@Override
public void onDestroy()
super.onDestroy();
Toast.makeText(this,"Service destroyed",Toast.LENGTH_LONG).show();
@Nullable
@Override
public IBinder onBind(Intent intent)
return null;
这是我在 Manifest.xml 中的代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.param.dateandtime">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Entry for LoginActivity.class -->
<activity android:name=".LoginActivity"
android:label="@string/app_name"></activity>
<activity android:name=".Finish"
android:label="@string/app_name"></activity>
<service android:name=".TravelService"
android:exported="false"/>
</application>
</manifest>
这里我附上了错误日志,显示了我面临的错误。我可以将错误视为“位置提供程序需要 ACCESS_FINE_LOCATION 权限”。 Error log:
【问题讨论】:
Stack Overflow 用于编程问题。你有什么问题? 发布您的清单 我发布了 manifest.xml 代码 【参考方案1】:您无法向服务请求权限,因为服务未绑定到 UI。
所以当你startService()
时从活动开始。
ActivityCompat.requestPermissions(this,new String[]Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION, 1001); //Any number can be used
并实现onRequestPermissionsResult()
回调
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults)
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode)
case 1001:
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED
&& (ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|| ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED))
//Start your service here
【讨论】:
我正在检查权限 onCreate() 是否正确。因此,在服务运行期间,它应该具有权限。但我想要的是如何在服务的 onCreate() 方法中授予权限。 我以为你知道该怎么做,但你注释掉了该代码并发布了它。更新了答案。 当我在服务中使用 ActivityCompat.requestPermissions() 时,它期望第一个参数作为一个活动并显示如下错误:lh6.googleusercontent.com/-iV4t1YB_hZU/Vxpow_fqGxI/AAAAAAAAEQU/… 糟糕,错过了,更新了答案。 还是不行。因为“this”在这里指的是 LocationListener。如果你有任何使用 GPS 编写的服务,你能分享一下吗?以上是关于服务内 gps 的 requestPermissions()。错误:“位置提供程序需要 ACCESS_FINE_LOCATION 权限。”的主要内容,如果未能解决你的问题,请参考以下文章
NTP网络校时服务器(北斗GPS校时器)在地铁内网系统中的应用
服务内 gps 的 requestPermissions()。错误:“位置提供程序需要 ACCESS_FINE_LOCATION 权限。”