Ejemplo n.º 1
0
 public void getLocation(View v) {
   if (serviceConnected()) {
     Location location = _locationClient.getLastLocation();
     _textViewLatLng.setText(LocationUtils.getLatLong(this, location));
   }
 }
Ejemplo n.º 2
0
 // LocationListener
 @Override
 public void onLocationChanged(Location location) {
   _textViewConnectionStatus.setText(R.string.location_updated);
   _textViewLatLng.setText(LocationUtils.getLatLong(this, location));
 }