Move checkGps() to onResume

This commit is contained in:
Josephine Lim 2017-05-15 12:11:06 +02:00
parent b377f0146c
commit aa4d2daf48

View file

@ -57,7 +57,7 @@ public class NearbyActivity extends BaseActivity {
if (getSupportActionBar() != null) {
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
checkGps();
bundle = new Bundle();
locationManager = new LocationServiceManager(this);
locationManager.registerLocationManager();
@ -150,6 +150,7 @@ public class NearbyActivity extends BaseActivity {
@Override
protected void onResume() {
super.onResume();
checkGps();
}
protected void refreshView() {