* Landmark)
*/
public void locationPicked(final LocationPicker.Picker picker,
final Landmark location) {
if (picker instanceof LocationPicker) {
final LocationPicker locationPicker = (LocationPicker) picker;
locationPicker.close();
}
if (location != null) {
_nameLabel.setText("Location name: " + location.getName());
_descLabel.setText("Description: " + location.getDescription());