Esempio n. 1
0
        private void RequestUpdatesForLocationManager()
        {
            //this._progressDialog.Show();
            Task.Factory.StartNew(() =>
            {
                var sensorService = (SensorManager)this.GetSystemService(SensorService);
                this.StartListening(sensorService, null, SensorType.Accelerometer);
                RunOnUiThread(this.OnProcessDone);
            });

            var localtionManager = (LocationManager)this.GetSystemService(LocationService);
            var listener         = new GenericLocationListener();

            this._backgroundRunner = new BackgroundRunner(localtionManager, listener);
            this._backgroundRunner.Run();
        }
Esempio n. 2
0
 public BackgroundRunner(LocationManager localtionManager, GenericLocationListener listener)
 {
     _localtionManager = localtionManager;
     _listener = listener;
 }
Esempio n. 3
0
 public BackgroundRunner(LocationManager localtionManager, GenericLocationListener listener)
 {
     _localtionManager = localtionManager;
     _listener         = listener;
 }
Esempio n. 4
0
        private void RequestUpdatesForLocationManager()
        {
            //this._progressDialog.Show();
            Task.Factory.StartNew(() =>
            {
                var sensorService = (SensorManager)this.GetSystemService(SensorService);
                this.StartListening(sensorService, null, SensorType.Accelerometer);
                RunOnUiThread(this.OnProcessDone);
            });

            var localtionManager = (LocationManager)this.GetSystemService(LocationService);
            var listener = new GenericLocationListener();
            this._backgroundRunner = new BackgroundRunner(localtionManager, listener);
            this._backgroundRunner.Run();
        }