所以我一直试图开始使用简单的GPS应用程序但是在某些时候我需要请求用户对locationManager方法的权限
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
locationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
if (locationManager != null) {
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
Latitude = location.getLatitude();
Longitude = location.getLongitude();
} //location
} //locationManager
} //isNetworkEnabled
我知道有一种简单的方法可以用于API 23,但我想定位Android 4.0。
我见过关于它的文档(https://developer.android.com/training/permissions/requesting.html),但我不太明白如何将它应用到我的代码中。我知道我应该使用ActivityCompact和ContextCompact,但我不确定如何。请帮忙!