Fixing issues when location is not available.
parent
32ddf3fd4c
commit
1fc6c53117
|
@ -103,10 +103,9 @@ public class MainActivity extends ActionBarActivity {
|
|||
photoInfo = savedInstanceState != null ? (PanoramioImageInfo) savedInstanceState.getSerializable(AppConstants.PHOTO_INFO) : null;
|
||||
savedConfiguration = savedInstanceState != null ? savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY) : false;
|
||||
|
||||
if (HelperUtils.checkForLocalicatonEnabled(this)) return;
|
||||
switchFragment();
|
||||
updateSwipeHandler();
|
||||
HelperUtils.firstTimeNotification(this);
|
||||
if (HelperUtils.checkForLocalicatonEnabled(this)) return;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -151,12 +150,14 @@ public class MainActivity extends ActionBarActivity {
|
|||
final String tag = fragTags.get(currFrag);
|
||||
if (tag == null) {
|
||||
lg.warn("Unknown fragment id");
|
||||
hideProgress();
|
||||
return;
|
||||
}
|
||||
|
||||
final Fragment fragment = getSupportFragmentManager().findFragmentByTag(tag);
|
||||
if (fragment == null) {
|
||||
lg.warn("There is no fragment with the given tag");
|
||||
hideProgress();
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -300,6 +301,7 @@ public class MainActivity extends ActionBarActivity {
|
|||
}
|
||||
|
||||
savedConfiguration = false;
|
||||
HelperUtils.firstTimeNotification(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -270,12 +270,13 @@ public class WikiLocationsFragment extends Fragment implements Refreshable {
|
|||
|
||||
WikiCacheDto dto = new WikiCacheDto();
|
||||
dto.setAppObject(appObjects);
|
||||
LocationManager locationService = (LocationManager) getActivity().getSystemService(LOCATION_SERVICE);
|
||||
Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity()));
|
||||
if (location != null) {
|
||||
dto.setLongitude(location.getLongitude());
|
||||
dto.setLatitude(location.getLatitude());
|
||||
dto.setAltitude(location.getAltitude());
|
||||
if (getActivity() != null) {
|
||||
Location location = NetUtils.getLastKnownLocation(getActivity());
|
||||
if (location != null) {
|
||||
dto.setLongitude(location.getLongitude());
|
||||
dto.setLatitude(location.getLatitude());
|
||||
dto.setAltitude(location.getAltitude());
|
||||
}
|
||||
}
|
||||
|
||||
dto.setFetchedAt(new GregorianCalendar().getTime());
|
||||
|
|
Loading…
Reference in New Issue