在Android中无法从GPS获取位置(onLocationChanged未被调用)

时间:2012-07-30 17:14:49

标签: android-emulator windows-mobile-gps

我的问题是我不能通过使用LocationManager类和LocationListener来获取GPS坐标。也许如果我告诉你我的代码,你会明白的。 这是我在OnCreate()中调用的代码:

 locMgr = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    currentLocListener = new MyLocationListener();
    locMgr.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, currentLocListener);
    locMgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, currentLocListener);

我有一个实现类MyLocationListener

的类LocationListener
public class MyLocationListener implements LocationListener {

    @Override
    public void onLocationChanged(Location location) {
        // TODO Auto-generated method stub
        String coordinates[] = {""+location.getLatitude(),""+location.getLongitude()};
        double lat = Double.parseDouble(coordinates[0]);
        double lng = Double.parseDouble(coordinates[1]);
        GeoPoint p = new GeoPoint((int)(lat*1E6), (int)(lng*1E6));
        mc.animateTo(p);
        mc.setZoom(19);

        MyMapOverlays marker = new MyMapOverlays(p);
        List<Overlay> listofOverLays = mapview.getOverlays();
        listofOverLays.clear();
        listofOverLays.add(marker);
        mapview.invalidate();
    }

    @Override
    public void onProviderDisabled(String provider) {
        // TODO Auto-generated method stub
        Toast.makeText(getApplicationContext(), "GPS is disabled", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onProviderEnabled(String provider) {
        // TODO Auto-generated method stub
        Toast.makeText(getApplicationContext(), "GPS is Enabled", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub
    }
}

我可以通过在DDMS中模拟Emulator Control中的位置来获取位置。所以我尝试在我的真实手机上进行测试。当我在手机上安装它时,虽然我开启了GPS和wifi,但它无法自动获取当前位置。

我尝试从市场上运行另一个谷歌地图应用程序到我的真实手机,它工作正常。 我不明白代码有什么问题......任何人都可以帮助我吗?

0 个答案:

没有答案