我使用这段代码:
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MINIMUM_TIME_BETWEEN_UPDATES,
MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
new MyLocationListener()
);
locationManager.addNmeaListener(new NmeaListener() {
@Override
public void onNmeaReceived(long arg0, String arg1) {
if(arg1.startsWith("$GPRMC")){
retrieveLocationButton.setText(arg1);
}
}
});
它有效,但我想每两分钟获取一次 gprmc 语句。