我正在尝试获取经度和纬度的当前位置坐标。到目前为止,这是我的代码:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
MyLocationListener myLocationListener = new MyLocationListener();
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;
}
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, myLocationListener);
}
}
也是这个课程:
public class MyLocationListener implements LocationListener {
private static final String TAG = "COORDINATES: ";
@Override
public void onLocationChanged(Location location) {
if(location != null){
Log.e(TAG, "Latitude: " + location.getLatitude());
Log.e(TAG, "Longitude: " + location.getLongitude());
}
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
}
当我在模拟器中运行应用程序时,我没有得到任何带坐标的日志消息。有什么建议吗?
答案 0 :(得分:2)
最好的方法是使用Google Play服务库提供的最新FusedLocationApi。
如果你想使用旧的方法,那很好,但你可能得不到非常准确的结果。
无论哪种方式,请确保您已在Android清单中启用了Internet权限,COARSE_LOCATION或FINE_LOCATION或两者。
另外,如果您有android 6.0,请记住您必须请求运行时权限,否则它将不适合您!
我昨天回答了类似的问题,你可以找到here - 哪个有效;
还有指向FusedLocationApi here的示例代码的链接。
我希望这可以帮助你,祝你好运!
<强>更新强>
您可以将Google Play服务添加到build.gradle中,如下所示:
compile 'com.google.android.gms:play-services:9.2.'
但如果您只对位置等服务感兴趣,可以具体说明:
compile 'com.google.android.gms:play-services-location:9.2.1'
注意强>
我强烈反对您在UI线程上获取用户位置,因为从长远来看它会破坏用户体验!使用单独的线程!!
答案 1 :(得分:0)