glocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
glocListener = new MyLocationListenerGPS();
glocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
1000 * 1, // 1 Sec
1, // 1 meter
glocListener);
このコードは、GPS を使用して位置を取得するためのものですが、両方の条件が満たされた場合 (1 秒と 1 メートル)、または 1 つだけの場合に位置を更新します。