0

我正在构建一个需要获取用户位置的应用程序。由于我对 android 没有太多经验,我现在正在阅读有关如何使事情正常工作的信息。

我创建了一个用于学习目的的测试应用程序。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    latitudeField = (TextView) findViewById(R.id.latitude);
    longitudeField = (TextView) findViewById(R.id.longitude);

    locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

    Criteria criteria = new Criteria();
    provider = locationManager.getBestProvider(criteria, false);
    Location location = locationManager.getLastKnownLocation(provider);

    if (location != null) {
        onLocationChanged(location);
    } else {
        latitudeField.setText("Latitute not available");
        longitudeField.setText("Longitude not available");
    }
}

@Override
public void onResume() {
    super.onResume();
    locationManager.requestLocationUpdates(provider, 400, 1, this);
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

public void onPause() {
    super.onPause();
    locationManager.removeUpdates(this);
}


@Override
public void onLocationChanged(Location location) {
    int lat = (int) (location.getLatitude());
    int lng = (int) (location.getLongitude());
    latitudeField.setText(String.valueOf(lat));
    longitudeField.setText(String.valueOf(lng));
}

但我读到使用getLastKnownLocation()并不是最好的方法,因为如果你让手机进入睡眠状态,去另一个城市,你就不会得到你的位置更新。您建议改用什么?

4

1 回答 1

0

我会建议你使用GPSTracker。即使您将手机置于睡眠状态或关闭/打开手机,这也会为您提供所需的绝对位置。

于 2013-07-04T06:07:42.170 回答