Code refactoring.

master
Tomasz Półgrabia 2016-09-19 21:23:11 +02:00
parent 6182d3b042
commit 66dc09bdb7
2 changed files with 36 additions and 25 deletions

View File

@ -165,29 +165,33 @@ public class MainActivity extends ActionBarActivity {
case R.id.refresh:
progressDlg.setMessage("Refreshing results");
progressDlg.show();
switch (currentFragmentId) {
case HOME_FRAGMENT_ID:
HomeFragment homeFragment = (HomeFragment) getSupportFragmentManager()
.findFragmentByTag(HomeFragment.TAG);
homeFragment.fetchPanoramioPhotos();
break;
case WIKI_FRAGMENT_ID:
WikiLocationsFragment wikiLocationsFragment = (WikiLocationsFragment)
getSupportFragmentManager()
.findFragmentByTag(WikiLocationsFragment.TAG);
wikiLocationsFragment.clearData();
wikiLocationsFragment.fetchWikiLocations();
break;
default:
lg.warn("Unknown current fragment ID");
break;
}
refreshFragment();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
private void refreshFragment() {
switch (currentFragmentId) {
case HOME_FRAGMENT_ID:
HomeFragment homeFragment = (HomeFragment) getSupportFragmentManager()
.findFragmentByTag(HomeFragment.TAG);
homeFragment.fetchPanoramioPhotos();
break;
case WIKI_FRAGMENT_ID:
WikiLocationsFragment wikiLocationsFragment = (WikiLocationsFragment)
getSupportFragmentManager()
.findFragmentByTag(WikiLocationsFragment.TAG);
wikiLocationsFragment.clearData();
wikiLocationsFragment.fetchWikiLocations();
break;
default:
lg.warn("Unknown current fragment ID");
break;
}
}
public void resetPhotoInfo() {
this.photoInfo = null;
}
@ -347,12 +351,16 @@ public class MainActivity extends ActionBarActivity {
private boolean checkForLocalicatonEnabled() {
lg.trace("Check for location enabled");
final String locationProvider = LocationUtils.getDefaultLocation(this);
lg.debug("Location provider {}", locationProvider);
if (locationProvider == null) {
lg.debug("Location provider is null. Prompting for enabling location services");
Intent locationSettingsIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivityForResult(locationSettingsIntent, LOCATION_SETTINGS_REQUEST_ID);
return true;
}
return false;
}
@ -415,14 +423,7 @@ public class MainActivity extends ActionBarActivity {
switch (requestCode) {
case LOCATION_SETTINGS_REQUEST_ID:
String locationProvider = LocationUtils.getDefaultLocation(this);
if (locationProvider == null) {
// launching settings activity to allow the user switching on location service
Intent intent = new Intent(this, SettingsActivity.class);
startActivity(intent);
}
refreshFragment();
break;
case SETTINGS_ID_INTENT_REQUEST_ID:
NetUtils.setGlobalProxyAuth(this);

View File

@ -2,11 +2,15 @@ package pl.tpolgrabia.urbanexplorer.utils;
import android.content.Context;
import android.location.LocationManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by tpolgrabia on 28.08.16.
*/
public class LocationUtils {
private static final Logger lg = LoggerFactory.getLogger(LocationUtils.class);
public static String getDefaultLocation(Context ctx) {
if (ctx == null) {
@ -15,13 +19,19 @@ public class LocationUtils {
LocationManager locationService = (LocationManager) ctx.getSystemService(Context.LOCATION_SERVICE);
if (locationService.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
lg.debug("GPS location provider is enabled");
return LocationManager.GPS_PROVIDER;
}
if (locationService.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
lg.debug("Network location provider is enabled");
return LocationManager.NETWORK_PROVIDER;
}
lg.trace("All provider: {}", locationService.getAllProviders());
lg.debug("All location providers all disabled");
return null;
}
}