我正在嘗試製作一個跟蹤用戶移動的應用程序。 到目前爲止,我已經顯示的位置的應用程序和「速度」帶GPS的運動跟蹤器使用LocationListener
protected void onCreate(Bundle savedInstanceState);
setContentView(R.layout.main);
txt = (TextView)findViewById(R.id.textView);
LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationListener locationListener = new MyLocationListener();
locationListener.requestLocationUpdates(LocationManager.GPS_PROVIDER,5000,10,locationListener);
}
private class MyLocationListener implements LocationListener
{
public void onLocationChanged(Location loc){
String longitude = "Long: "+ loc.getLongitude();
String latitude = "Lat: "+ loc.getLatitude();
txt.setText(longitude + latitude);
}
這是我的代碼。 但我想得到我的速度,行程距離以及最大和最小高度。 如果任何人都可以幫忙,請做,它將不勝感激!
'protected void onCreate(Bundle savedInstanceState);'是那個';'一個錯字? –
其實不是:D –