gpt4 book ai didi

java - 在android中获取当前位置(坐标)?

转载 作者:行者123 更新时间:2023-12-02 03:27:58 37 4
gpt4 key购买 nike

我正在尝试获取当前位置的经度和纬度坐标。这是到目前为止我的代码:

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) {

}

}

当我在模拟器中运行应用程序时,我没有收到任何带有坐标的日志消息。有什么建议吗?

最佳答案

最好的方法是使用 Google Play 服务库提供的最新 FusedLocationApi。

如果您想使用旧方法,那没问题,但您可能不会得到非常准确的结果。

无论哪种方式,请确保您已在 Android list 中启用互联网权限(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 线程上获取用户位置,因为从长远来看,这会破坏用户体验!使用单独的线程!!

关于java - 在android中获取当前位置(坐标)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38532178/

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