aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2012-03-01 12:29:50 +0000
committerChristopher Baines <cbaines8@gmail.com>2012-03-01 12:29:50 +0000
commit4619835948a40c3ecffe3c7001cab295e58e5bdd (patch)
tree6131f09666b73ac5144816798b2c9c8cab4c6174 /src
parent7191f6188d1ce02599430544f0af69d76e74a1ba (diff)
downloadsouthamptonuniversitymap-4619835948a40c3ecffe3c7001cab295e58e5bdd.tar
southamptonuniversitymap-4619835948a40c3ecffe3c7001cab295e58e5bdd.tar.gz
Added the libs I forgot to add properly last commit, also changed versions stuff.
Diffstat (limited to 'src')
-rw-r--r--src/net/cbaines/suma/MapActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/cbaines/suma/MapActivity.java b/src/net/cbaines/suma/MapActivity.java
index 728591d..9dd927a 100644
--- a/src/net/cbaines/suma/MapActivity.java
+++ b/src/net/cbaines/suma/MapActivity.java
@@ -293,6 +293,7 @@ public class MapActivity extends ToastHelperActivity implements MapViewConstants
if (activityPrefs.getBoolean(OTHER_OVERLAYS + MY_LOCATION_OVERLAY, MY_LOCATION_OVERLAY_ENABLED_BY_DEFAULT)
&& sharedPrefs.getBoolean(GPS_ENABLED, GPS_ENABLED_BY_DEFAULT)) {
+ // The following can cause problems in some emulators,
myLocationOverlay.enableMyLocation();
} else {
myLocationOverlay.disableMyLocation();
@@ -301,6 +302,7 @@ public class MapActivity extends ToastHelperActivity implements MapViewConstants
sharedPrefs.registerOnSharedPreferenceChangeListener(this);
activityPrefs.registerOnSharedPreferenceChangeListener(this);
}
+ Log.i(TAG, "Finished OnResume");
}
public void onPause() {