diff options
Diffstat (limited to 'src/cgeo/geocaching/googlemaps/googleMapActivity.java')
| -rw-r--r-- | src/cgeo/geocaching/googlemaps/googleMapActivity.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/googlemaps/googleMapActivity.java b/src/cgeo/geocaching/googlemaps/googleMapActivity.java index a95b741..3a366dd 100644 --- a/src/cgeo/geocaching/googlemaps/googleMapActivity.java +++ b/src/cgeo/geocaching/googlemaps/googleMapActivity.java @@ -4,6 +4,7 @@ import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; +import android.view.View; import cgeo.geocaching.mapcommon.MapBase; import cgeo.geocaching.mapcommon.cgeomap; import cgeo.geocaching.mapinterfaces.ActivityImpl; @@ -98,4 +99,14 @@ public class googleMapActivity extends MapActivity implements ActivityImpl { return super.onPrepareOptionsMenu(menu); } + // close activity and open homescreen + public void goHome(View view) { + mapBase.goHome(view); + } + + // open manual entry + public void goManual(View view) { + mapBase.goManual(view); + } + } |
