如何使用服务查找GPS位置?

时间:2010-12-27 18:43:09

标签: android

我是Android新手,我不知道如何使用服务找到当前的GPS位置。我该怎么做?

2 个答案:

答案 0 :(得分:2)

有几种方法可以做到,我会展示一些:

private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
    //TODO:location change handling
    }
}

您也可以使用LocationOverlay:

 final MyLocationOverlay overlay = new MyLocationOverlay(this, mapView);
        overlay.enableMyLocation();
        overlay.runOnFirstFix(new Runnable() {
           public void run() {
             //TODO: update some model, etc
           }
        });

答案 1 :(得分:0)

我写了一篇博客,详细介绍了如何获取用户位置并为您提供示例代码。

http://www.scotthelme.co.uk/blog/android-location-services/

希望它有所帮助!