Being a bit more request-friendly for Panoramio API.

master
Tomasz Półgrabia 2016-09-18 11:29:16 +02:00
parent 333bc4ebaf
commit fcf9f75aee
6 changed files with 63 additions and 28 deletions

View File

@ -21,4 +21,7 @@ public class AppConstants {
public static final String DEF_HTTP_PROXY_PASSWORD = null; public static final String DEF_HTTP_PROXY_PASSWORD = null;
public static final String PREF_HTTP_PROXY_ENABLED_KEY = "pref_proxy_enabled"; public static final String PREF_HTTP_PROXY_ENABLED_KEY = "pref_proxy_enabled";
public static final boolean DEF_HTTP_PROXY_ENABLED = false; public static final boolean DEF_HTTP_PROXY_ENABLED = false;
public static final String PANORAMIO_BULK_SIZE_KEY = "pref_panoramio_bulk_size";
public static final int PANORAMIO_BULK_SIZE_DEF_VALUE = 50;
} }

View File

@ -55,6 +55,7 @@ public class MainActivity extends ActionBarActivity {
private static final int SETTINGS_ID_INTENT_REQUEST_ID = 2; private static final int SETTINGS_ID_INTENT_REQUEST_ID = 2;
private static final String PHOTO_INFO = "PHOTO_INFO"; private static final String PHOTO_INFO = "PHOTO_INFO";
private static final String FIRST_TIME_LAUNCH = "FIRST_TIME_LAUNCH_KEY"; private static final String FIRST_TIME_LAUNCH = "FIRST_TIME_LAUNCH_KEY";
private static final String MAIN_BACKSTACK = "MAIN_BACKSTACK_KEY";
public static DisplayImageOptions options; public static DisplayImageOptions options;
private GestureDetectorCompat gestureDetector; private GestureDetectorCompat gestureDetector;
private int currentFragmentId = 0; private int currentFragmentId = 0;
@ -193,7 +194,12 @@ public class MainActivity extends ActionBarActivity {
R.anim.slide_out_down, R.anim.slide_out_down,
R.anim.slide_in_up, R.anim.slide_in_up,
R.anim.slide_out_up); R.anim.slide_out_up);
ctx.replace(R.id.fragments, panoramioShower); Fragment frag = fragmentManager.findFragmentByTag(PanoramioShowerFragment.TAG);
if (frag != null) {
ctx.replace(R.id.fragments, frag);
} else {
ctx.replace(R.id.fragments, panoramioShower, PanoramioShowerFragment.TAG);
}
ctx.addToBackStack(PHOTO_BACKSTACK); ctx.addToBackStack(PHOTO_BACKSTACK);
ctx.commit(); ctx.commit();
@ -242,8 +248,13 @@ public class MainActivity extends ActionBarActivity {
} }
} }
ctx.replace(R.id.fragments, fragment, tag); Fragment frag = fragmentManager.findFragmentByTag(tag);
ctx.addToBackStack(null); if (frag == null) {
ctx.replace(R.id.fragments, fragment, tag);
} else {
ctx.replace(R.id.fragments, frag);
}
ctx.addToBackStack(MAIN_BACKSTACK);
ctx.commit(); ctx.commit();
updateSwipeHandler(); updateSwipeHandler();
} }

View File

@ -25,6 +25,7 @@ import pl.tpolgrabia.urbanexplorer.dto.panoramio.PanoramioImageInfo;
import pl.tpolgrabia.urbanexplorer.utils.LocationUtils; import pl.tpolgrabia.urbanexplorer.utils.LocationUtils;
import pl.tpolgrabia.urbanexplorer.utils.PanoramioUtils; import pl.tpolgrabia.urbanexplorer.utils.PanoramioUtils;
import java.io.Serializable;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.concurrent.Semaphore; import java.util.concurrent.Semaphore;
@ -34,21 +35,24 @@ import java.util.concurrent.Semaphore;
*/ */
public class HomeFragment extends Fragment { public class HomeFragment extends Fragment {
private static final String CLASS_TAG = HomeFragment.class.getSimpleName();
private static final Logger lg = LoggerFactory.getLogger(HomeFragment.class); private static final Logger lg = LoggerFactory.getLogger(HomeFragment.class);
private static final int PANORAMIA_BULK_DATA_SIZE = 10;
public static final String TAG = HomeFragment.class.getSimpleName(); public static final String TAG = HomeFragment.class.getSimpleName();
public static final int FRAG_ID = 1; private static final String PHOTO_LIST = "PHOTO_LIST_KEY";
private LocationManager locationService; private LocationManager locationService;
private boolean initialized = false; private boolean initialized = false;
private View inflatedView; private View inflatedView;
private Long pageId; private Long pageId;
private Semaphore loading; private Semaphore loading;
private List<PanoramioImageInfo> photos; private ArrayList<PanoramioImageInfo> photos;
private boolean noMorePhotos; private boolean noMorePhotos;
public int getPanoramioBulkDataSize() {
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
return sharedPrefs.getInt(AppConstants.PANORAMIO_BULK_SIZE_KEY, AppConstants.PANORAMIO_BULK_SIZE_DEF_VALUE);
}
public HomeFragment() { public HomeFragment() {
// Required empty public constructor // Required empty public constructor
} }
@ -59,7 +63,6 @@ public class HomeFragment extends Fragment {
lg.trace("onCreate"); lg.trace("onCreate");
pageId = 1L; pageId = 1L;
loading = new Semaphore(1, true); loading = new Semaphore(1, true);
photos = new ArrayList<>();
noMorePhotos = false; noMorePhotos = false;
} }
@ -88,23 +91,14 @@ public class HomeFragment extends Fragment {
}); });
} }
private Double safeParseDouble(CharSequence text) {
if (text == null) {
return null;
}
try {
return Double.parseDouble(text.toString());
} catch (NumberFormatException e) {
lg.warn("Wrong number format", e);
return null;
}
}
@Override @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) { Bundle savedInstanceState) {
// Inflate the layout for this fragment // Inflate the layout for this fragment
lg.trace("TAG: {}", getTag());
for (Fragment frag : getFragmentManager().getFragments()) {
lg.trace("Fragment TAG {}", frag.getTag());
}
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;
@ -119,6 +113,22 @@ public class HomeFragment extends Fragment {
} }
}); });
initialized = true;
lg.trace("Saved instance state {}", savedInstanceState);
if (savedInstanceState == null) {
lg.trace("Saved instance state is null");
photos = new ArrayList<>();
}
else {
final Serializable serializable = savedInstanceState.getSerializable(PHOTO_LIST);
lg.trace("Photo list serializable {}", serializable);
photos = (ArrayList<PanoramioImageInfo>) serializable;
}
locations.setAdapter(new PanoramioAdapter(getActivity(), R.layout.location_item, photos));
lg.trace("Photos initialized {}", photos);
locations.setOnScrollListener(new AbsListView.OnScrollListener() { locations.setOnScrollListener(new AbsListView.OnScrollListener() {
@Override @Override
public void onScrollStateChanged(AbsListView view, int scrollState) { public void onScrollStateChanged(AbsListView view, int scrollState) {
@ -158,8 +168,6 @@ public class HomeFragment extends Fragment {
} }
}); });
initialized = true;
return inflatedView; return inflatedView;
} }
@ -203,7 +211,7 @@ public class HomeFragment extends Fragment {
int offset = photos.size(); int offset = photos.size();
lg.debug("Fetching additional photos offset: {}, count: {}", offset, PANORAMIA_BULK_DATA_SIZE); lg.debug("Fetching additional photos offset: {}, count: {}", offset, getPanoramioBulkDataSize());
PanoramioUtils.fetchPanoramioImages( PanoramioUtils.fetchPanoramioImages(
activity, activity,
@ -211,7 +219,7 @@ public class HomeFragment extends Fragment {
location.getLongitude(), location.getLongitude(),
fetchRadiusX(), fetchRadiusX(),
fetchRadiusY(), fetchRadiusY(),
(long)(offset + PANORAMIA_BULK_DATA_SIZE), (long)(offset),
fetchLocationPageSize(), fetchLocationPageSize(),
new PanoramioResponseCallback() { new PanoramioResponseCallback() {
@Override @Override
@ -275,8 +283,6 @@ public class HomeFragment extends Fragment {
@Override @Override
public void callback(PanoramioResponseStatus status, List<PanoramioImageInfo> images, Long imagesCount) { public void callback(PanoramioResponseStatus status, List<PanoramioImageInfo> images, Long imagesCount) {
Long pageSize = fetchLocationPageSize(); Long pageSize = fetchLocationPageSize();
Long start = (pageId - 1) * pageSize + 1;
Long end = pageId * pageSize;
ArrayAdapter<PanoramioImageInfo> adapter = new PanoramioAdapter(activity, ArrayAdapter<PanoramioImageInfo> adapter = new PanoramioAdapter(activity,
R.layout.location_item, R.layout.location_item,
@ -299,7 +305,7 @@ public class HomeFragment extends Fragment {
} }
private Long fetchLocationPageSize() { private Long fetchLocationPageSize() {
return new Long(PANORAMIA_BULK_DATA_SIZE); return new Long(getPanoramioBulkDataSize());
} }
private Double fetchRadiusX() { private Double fetchRadiusX() {
@ -372,6 +378,8 @@ public class HomeFragment extends Fragment {
super.onSaveInstanceState(outState); super.onSaveInstanceState(outState);
lg.trace("Saving state"); lg.trace("Saving state");
outState.putSerializable(PHOTO_LIST, photos);
lg.trace("Saved photos: {}", photos);
} }
} }

View File

@ -24,6 +24,7 @@ public class PanoramioShowerFragment extends Fragment {
public static final String PANORAMIO_PHOTO_ARG_KEY = "PANORAMIO_PHOTO_ARG_KEY"; public static final String PANORAMIO_PHOTO_ARG_KEY = "PANORAMIO_PHOTO_ARG_KEY";
public static final String TAG = "PANORAMIO_TAG";
private TextView photoTitle; private TextView photoTitle;
private TextView photoUploadDate; private TextView photoUploadDate;
private TextView photoAuthor; private TextView photoAuthor;
@ -94,4 +95,5 @@ public class PanoramioShowerFragment extends Fragment {
mainActivity.resetPhotoInfo(); mainActivity.resetPhotoInfo();
} }
} }
} }

View File

@ -55,6 +55,10 @@ public class WikiLocationsFragment extends Fragment {
Bundle savedInstanceState) { Bundle savedInstanceState) {
// Inflate the layout for this fragment // Inflate the layout for this fragment
final View inflatedView = inflater.inflate(R.layout.fragment_wiki_locations, container, false); final View inflatedView = inflater.inflate(R.layout.fragment_wiki_locations, container, false);
lg.trace("TAG: {}", getTag());
for (Fragment frag : getFragmentManager().getFragments()) {
lg.trace("Fragment TAG {}", frag.getTag());
}
locationService = (LocationManager) getActivity().getSystemService(LOCATION_SERVICE); locationService = (LocationManager) getActivity().getSystemService(LOCATION_SERVICE);
currentLocation = (TextView) inflatedView.findViewById(R.id.wiki_current_location); currentLocation = (TextView) inflatedView.findViewById(R.id.wiki_current_location);

View File

@ -19,6 +19,13 @@
android:defaultValue="0.05" android:defaultValue="0.05"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
<EditTextPreference
android:key="pref_panoramio_bulk_size"
android:title="Radius Y"
android:summary="Radius Y"
android:defaultValue="50"
android:inputType="number" />
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory