/** Start detect GPS location. */
  @Override
  protected void onResume() {
    super.onResume();

    message.setText("Getting the GPS location");
    getLocation.startPositioning();
  }
 /** Try to stop GetLocation. */
 @Override
 protected void onPause() {
   getLocation.stopPositioning();
   super.onPause();
 }