Refactoring source code - some cleanups -> making smaller some classes.
parent
c396759cec
commit
2fba983ec1
|
@ -21,7 +21,10 @@ import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
import pl.tpolgrabia.urbanexplorer.fragments.PanoramioShowerFragment;
|
import pl.tpolgrabia.urbanexplorer.fragments.PanoramioShowerFragment;
|
||||||
import pl.tpolgrabia.urbanexplorer.fragments.Refreshable;
|
import pl.tpolgrabia.urbanexplorer.fragments.Refreshable;
|
||||||
import pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment;
|
import pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.handlers.PanoramioShowerSwitchHandler;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.handlers.PanoramioSwitchHandler;
|
||||||
import pl.tpolgrabia.urbanexplorer.handlers.SwipeHandler;
|
import pl.tpolgrabia.urbanexplorer.handlers.SwipeHandler;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.handlers.WikiSwitchHandler;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.HelperUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.HelperUtils;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.LocationUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.LocationUtils;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.NetUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.NetUtils;
|
||||||
|
@ -47,6 +50,7 @@ public class MainActivity extends ActionBarActivity {
|
||||||
private ProgressDialog progressDlg;
|
private ProgressDialog progressDlg;
|
||||||
private MainActivityState oldFrag = MainActivityState.PANORAMIO_SHOWER;
|
private MainActivityState oldFrag = MainActivityState.PANORAMIO_SHOWER;
|
||||||
private boolean savedConfiguration;
|
private boolean savedConfiguration;
|
||||||
|
private static final Map<MainActivityState, Runnable> switchFragmentActions = new HashMap<>();
|
||||||
|
|
||||||
private static final Map<Integer, String> fragTags = new HashMap<>();
|
private static final Map<Integer, String> fragTags = new HashMap<>();
|
||||||
|
|
||||||
|
@ -55,6 +59,12 @@ public class MainActivity extends ActionBarActivity {
|
||||||
fragTags.put(AppConstants.WIKI_FRAGMENT_ID, WikiLocationsFragment.TAG);
|
fragTags.put(AppConstants.WIKI_FRAGMENT_ID, WikiLocationsFragment.TAG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public MainActivity() {
|
||||||
|
switchFragmentActions.put(MainActivityState.PANORAMIO_SHOWER, new PanoramioShowerSwitchHandler(this));
|
||||||
|
switchFragmentActions.put(MainActivityState.PANORAMIO, new PanoramioSwitchHandler(this));
|
||||||
|
switchFragmentActions.put(MainActivityState.WIKI, new WikiSwitchHandler(this));
|
||||||
|
}
|
||||||
|
|
||||||
private List<PanoramioImageInfo> photos;
|
private List<PanoramioImageInfo> photos;
|
||||||
|
|
||||||
public StandardLocationListener getLocationCallback() {
|
public StandardLocationListener getLocationCallback() {
|
||||||
|
@ -213,28 +223,18 @@ public class MainActivity extends ActionBarActivity {
|
||||||
photoInfo = null;
|
photoInfo = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (currFrag) {
|
Runnable switchAction = switchFragmentActions.get(currFrag);
|
||||||
case PANORAMIO_SHOWER:
|
if (switchAction != null) {
|
||||||
lg.debug("Switching to panoramio shower");
|
switchAction.run();
|
||||||
switchToPhoto(photoInfo);
|
} else {
|
||||||
break;
|
lg.warn("There is no valid switch action to the given fragment {}", currFrag);
|
||||||
case PANORAMIO:
|
|
||||||
// switch to home fragment
|
|
||||||
lg.debug("Switching to home fragment");
|
|
||||||
switchFragment(new HomeFragment(), HomeFragment.TAG);
|
|
||||||
break;
|
|
||||||
case WIKI:
|
|
||||||
// switch to wiki fragment
|
|
||||||
lg.debug("Switching to wiki fragment");
|
|
||||||
switchFragment(new WikiLocationsFragment(), WikiLocationsFragment.TAG);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
savedConfiguration = false;
|
savedConfiguration = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void switchFragment(Fragment newFragment, String tag) {
|
public void switchFragment(Fragment newFragment, String tag) {
|
||||||
|
|
||||||
FragmentManager fragmentManager = getSupportFragmentManager();
|
FragmentManager fragmentManager = getSupportFragmentManager();
|
||||||
FragmentTransaction ctx = fragmentManager.beginTransaction();
|
FragmentTransaction ctx = fragmentManager.beginTransaction();
|
||||||
|
@ -369,4 +369,8 @@ public class MainActivity extends ActionBarActivity {
|
||||||
public void setPhotos(List<PanoramioImageInfo> photos) {
|
public void setPhotos(List<PanoramioImageInfo> photos) {
|
||||||
this.photos = photos;
|
this.photos = photos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public PanoramioImageInfo getPhotoInfo() {
|
||||||
|
return photoInfo;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.callbacks;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class GeocodedLocationCallback implements LocationGeoCoderCallback {
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(GeocodedLocationCallback.class);
|
||||||
|
private HomeFragment homeFragment;
|
||||||
|
|
||||||
|
public GeocodedLocationCallback(HomeFragment homeFragment) {
|
||||||
|
this.homeFragment = homeFragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void callback(int code, String message, String googleStatus, String geocodedLocation) {
|
||||||
|
lg.debug("Geocoded result code {}, message {}, status: {}, value {}",
|
||||||
|
code, message, googleStatus, geocodedLocation);
|
||||||
|
|
||||||
|
homeFragment.setCurrentGeocodedLocation(geocodedLocation);
|
||||||
|
homeFragment.updateLocationInfo();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.callbacks;
|
||||||
|
|
||||||
|
import android.location.Location;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioImageInfo;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class PanoramioLocationCallback implements StandardLocationListenerCallback {
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(PanoramioLocationCallback.class);
|
||||||
|
private HomeFragment homeFragment;
|
||||||
|
|
||||||
|
public PanoramioLocationCallback(HomeFragment homeFragment) {
|
||||||
|
this.homeFragment = homeFragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void callback(Location location) {
|
||||||
|
homeFragment.setNoMorePhotos(false);
|
||||||
|
homeFragment.setPhotos(new ArrayList<PanoramioImageInfo>());
|
||||||
|
homeFragment.setCurrentGeocodedLocation(null);
|
||||||
|
homeFragment.updateGeocodedLocation();
|
||||||
|
try {
|
||||||
|
homeFragment.fetchAdditionalPhotos();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
lg.error("Failed trying acquring lock to load photos", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.callbacks;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class PanoramioProviderCallback implements ProviderStatusCallback {
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(PanoramioProviderCallback.class);
|
||||||
|
private HomeFragment homeFragment;
|
||||||
|
|
||||||
|
public PanoramioProviderCallback(HomeFragment homeFragment) {
|
||||||
|
this.homeFragment = homeFragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void callback(String provider, boolean enabled) {
|
||||||
|
if (enabled) {
|
||||||
|
lg.trace("Handling provider enabling - refreshing panoramio listing");
|
||||||
|
homeFragment.fetchPanoramioPhotos();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,7 +10,6 @@ import android.support.v4.app.FragmentActivity;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.AdapterView;
|
|
||||||
import android.widget.ListView;
|
import android.widget.ListView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
@ -24,6 +23,7 @@ import pl.tpolgrabia.urbanexplorer.R;
|
||||||
import pl.tpolgrabia.urbanexplorer.callbacks.*;
|
import pl.tpolgrabia.urbanexplorer.callbacks.*;
|
||||||
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioCacheDto;
|
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioCacheDto;
|
||||||
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioImageInfo;
|
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioImageInfo;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.handlers.PanoramioItemLongClickHandler;
|
||||||
import pl.tpolgrabia.urbanexplorer.handlers.PanoramioLocationsScrollListener;
|
import pl.tpolgrabia.urbanexplorer.handlers.PanoramioLocationsScrollListener;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.LocationUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.LocationUtils;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.PanoramioUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.PanoramioUtils;
|
||||||
|
@ -88,33 +88,12 @@ public class HomeFragment extends Fragment implements Refreshable {
|
||||||
private void initLocationCallback() {
|
private void initLocationCallback() {
|
||||||
MainActivity mainActivity = ((MainActivity) getActivity());
|
MainActivity mainActivity = ((MainActivity) getActivity());
|
||||||
mainActivity.getLocationCallback()
|
mainActivity.getLocationCallback()
|
||||||
.addCallback(new StandardLocationListenerCallback() {
|
.addCallback(new PanoramioLocationCallback(this));
|
||||||
@Override
|
|
||||||
public void callback(Location location) {
|
|
||||||
noMorePhotos = false;
|
|
||||||
photos = new ArrayList<>();
|
|
||||||
currentGeocodedLocation = null;
|
|
||||||
updateGeocodedLocation();
|
|
||||||
try {
|
|
||||||
fetchAdditionalPhotos();
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
lg.error("Failed trying acquring lock to load photos", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
mainActivity.getLocationCallback()
|
mainActivity.getLocationCallback()
|
||||||
.addProviderCallback(new ProviderStatusCallback() {
|
.addProviderCallback(new PanoramioProviderCallback(this));
|
||||||
@Override
|
|
||||||
public void callback(String provider, boolean enabled) {
|
|
||||||
if (enabled) {
|
|
||||||
lg.trace("Handling provider enabling - refreshing panoramio listing");
|
|
||||||
fetchPanoramioPhotos();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateGeocodedLocation() {
|
public void updateGeocodedLocation() {
|
||||||
if (getActivity() == null) {
|
if (getActivity() == null) {
|
||||||
lg.debug("Activity still not attached");
|
lg.debug("Activity still not attached");
|
||||||
return;
|
return;
|
||||||
|
@ -127,16 +106,10 @@ public class HomeFragment extends Fragment implements Refreshable {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
LocationUtils.getGeoCodedLocation(getActivity(), currLocation.getLatitude(), currLocation.getLongitude(), new LocationGeoCoderCallback() {
|
LocationUtils.getGeoCodedLocation(getActivity(),
|
||||||
@Override
|
currLocation.getLatitude(),
|
||||||
public void callback(int code, String message, String googleStatus, String geocodedLocation) {
|
currLocation.getLongitude(),
|
||||||
lg.debug("Geocoded result code {}, message {}, status: {}, value {}",
|
new GeocodedLocationCallback(this));
|
||||||
code, message, googleStatus, geocodedLocation);
|
|
||||||
|
|
||||||
currentGeocodedLocation = geocodedLocation;
|
|
||||||
updateLocationInfo();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,16 +128,7 @@ public class HomeFragment extends Fragment implements Refreshable {
|
||||||
inflatedView = inflater.inflate(R.layout.fragment_home, container, false);
|
inflatedView = inflater.inflate(R.layout.fragment_home, container, false);
|
||||||
ListView locations = (ListView)inflatedView.findViewById(R.id.locations);
|
ListView locations = (ListView)inflatedView.findViewById(R.id.locations);
|
||||||
final ListView finalLocations = locations;
|
final ListView finalLocations = locations;
|
||||||
locations.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
|
locations.setOnItemLongClickListener(new PanoramioItemLongClickHandler(this, finalLocations));
|
||||||
@Override
|
|
||||||
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int pos, long rowId) {
|
|
||||||
PanoramioAdapter panAdapter = (PanoramioAdapter) finalLocations.getAdapter();
|
|
||||||
PanoramioImageInfo photoInfo = panAdapter.getItem(pos);
|
|
||||||
MainActivity activity = (MainActivity) getActivity();
|
|
||||||
activity.switchToPhoto(photoInfo);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
initialized = true;
|
initialized = true;
|
||||||
|
|
||||||
|
@ -459,4 +423,12 @@ public class HomeFragment extends Fragment implements Refreshable {
|
||||||
photos.addAll(images);
|
photos.addAll(images);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setCurrentGeocodedLocation(String currentGeocodedLocation) {
|
||||||
|
this.currentGeocodedLocation = currentGeocodedLocation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPhotos(ArrayList<PanoramioImageInfo> photos) {
|
||||||
|
this.photos = photos;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.handlers;
|
||||||
|
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.AdapterView;
|
||||||
|
import android.widget.ListView;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioImageInfo;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.PanoramioAdapter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class PanoramioItemLongClickHandler implements AdapterView.OnItemLongClickListener {
|
||||||
|
private HomeFragment homeFragment;
|
||||||
|
private final ListView finalLocations;
|
||||||
|
|
||||||
|
public PanoramioItemLongClickHandler(HomeFragment homeFragment, ListView finalLocations) {
|
||||||
|
this.homeFragment = homeFragment;
|
||||||
|
this.finalLocations = finalLocations;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int pos, long rowId) {
|
||||||
|
PanoramioAdapter panAdapter = (PanoramioAdapter) finalLocations.getAdapter();
|
||||||
|
PanoramioImageInfo photoInfo = panAdapter.getItem(pos);
|
||||||
|
MainActivity activity = (MainActivity) homeFragment.getActivity();
|
||||||
|
activity.switchToPhoto(photoInfo);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.handlers;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class PanoramioShowerSwitchHandler implements Runnable {
|
||||||
|
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(PanoramioShowerSwitchHandler.class);
|
||||||
|
private final MainActivity mainActivity;
|
||||||
|
|
||||||
|
public PanoramioShowerSwitchHandler(MainActivity mainActivity) {
|
||||||
|
this.mainActivity = mainActivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
lg.debug("Switching to panoramio shower");
|
||||||
|
mainActivity.switchToPhoto(mainActivity.getPhotoInfo());
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.handlers;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.HomeFragment;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class PanoramioSwitchHandler implements Runnable {
|
||||||
|
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(PanoramioSwitchHandler.class);
|
||||||
|
private final MainActivity mainActivity;
|
||||||
|
|
||||||
|
public PanoramioSwitchHandler(MainActivity mainActivity) {
|
||||||
|
this.mainActivity = mainActivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
lg.debug("Switching to home fragment");
|
||||||
|
mainActivity.switchFragment(new HomeFragment(), HomeFragment.TAG);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer.handlers;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.MainActivity;
|
||||||
|
import pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 21.09.16.
|
||||||
|
*/
|
||||||
|
public class WikiSwitchHandler implements Runnable {
|
||||||
|
private final MainActivity mainActivity;
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(WikiSwitchHandler.class);
|
||||||
|
|
||||||
|
public WikiSwitchHandler(MainActivity mainActivity) {
|
||||||
|
this.mainActivity = mainActivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
lg.debug("Switching to wiki fragment");
|
||||||
|
mainActivity.switchFragment(new WikiLocationsFragment(), WikiLocationsFragment.TAG);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue