Merge branch 'release'
commit
c9550c2986
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
@ -90,7 +91,7 @@ public class MainActivity extends ActionBarActivity {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
lg.trace("onCreate");
|
lg.trace("onCreate");
|
||||||
setContentView(R.layout.activity_main);
|
setContentView(R.layout.activity_main);
|
||||||
AQUtility.setDebug(true);
|
AQUtility.setDebug(false);
|
||||||
|
|
||||||
NetUtils.setGlobalProxyAuth(this);
|
NetUtils.setGlobalProxyAuth(this);
|
||||||
|
|
||||||
|
@ -114,8 +115,7 @@ public class MainActivity extends ActionBarActivity {
|
||||||
gestureDetector = new GestureDetectorCompat(this, swipeHandler);
|
gestureDetector = new GestureDetectorCompat(this, swipeHandler);
|
||||||
locationCallback = new StandardLocationListener();
|
locationCallback = new StandardLocationListener();
|
||||||
initLocalication();
|
initLocalication();
|
||||||
Fabric fabric = new Fabric.Builder(this).debuggable(true).kits(new Crashlytics()).build();
|
Fabric.with(this, new Crashlytics());
|
||||||
Fabric.with(fabric);
|
|
||||||
|
|
||||||
Integer fragId = savedInstanceState != null ? savedInstanceState.getInt(FRAG_ID) : null;
|
Integer fragId = savedInstanceState != null ? savedInstanceState.getInt(FRAG_ID) : null;
|
||||||
lg.trace("Restored orig frag id: {}", fragId);
|
lg.trace("Restored orig frag id: {}", fragId);
|
||||||
|
@ -194,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();
|
||||||
|
@ -202,6 +207,12 @@ public class MainActivity extends ActionBarActivity {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void switchFragment() {
|
private void switchFragment() {
|
||||||
|
|
||||||
|
if (photoInfo != null) {
|
||||||
|
switchToPhoto(photoInfo);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
switch (currentFragmentId) {
|
switch (currentFragmentId) {
|
||||||
case HOME_FRAGMENT_ID:
|
case HOME_FRAGMENT_ID:
|
||||||
// switch to home fragment
|
// switch to home fragment
|
||||||
|
@ -243,8 +254,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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,15 @@ package pl.tpolgrabia.urbanexplorer.activities;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.preference.PreferenceFragment;
|
import android.preference.PreferenceFragment;
|
||||||
import android.support.v7.app.ActionBarActivity;
|
import android.support.v7.app.ActionBarActivity;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
import pl.tpolgrabia.urbanexplorer.R;
|
import pl.tpolgrabia.urbanexplorer.R;
|
||||||
import pl.tpolgrabia.urbanexplorer.fragments.SettingsFragment;
|
import pl.tpolgrabia.urbanexplorer.fragments.SettingsFragment;
|
||||||
|
|
||||||
public class SettingsActivity extends ActionBarActivity {
|
public class SettingsActivity extends ActionBarActivity {
|
||||||
|
|
||||||
|
private static final Logger lg = LoggerFactory.getLogger(SettingsActivity.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
@ -19,5 +23,26 @@ public class SettingsActivity extends ActionBarActivity {
|
||||||
getFragmentManager().beginTransaction()
|
getFragmentManager().beginTransaction()
|
||||||
.replace(R.id.settings_fragments, new SettingsFragment())
|
.replace(R.id.settings_fragments, new SettingsFragment())
|
||||||
.commit();
|
.commit();
|
||||||
|
|
||||||
|
lg.trace("onCreate");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
lg.trace("onResume");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPause() {
|
||||||
|
super.onPause();
|
||||||
|
|
||||||
|
lg.trace("onPause");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
lg.trace("onDestroy");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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,30 @@ 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 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());
|
||||||
|
final String sValue = sharedPrefs.getString(AppConstants.PANORAMIO_BULK_SIZE_KEY,
|
||||||
|
String.valueOf(AppConstants.PANORAMIO_BULK_SIZE_DEF_VALUE));
|
||||||
|
try {
|
||||||
|
return Integer.parseInt(sValue);
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
lg.warn("Invalid panoramio bulk data size {}", sValue, e);
|
||||||
|
return AppConstants.PANORAMIO_BULK_SIZE_DEF_VALUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public HomeFragment() {
|
public HomeFragment() {
|
||||||
// Required empty public constructor
|
// Required empty public constructor
|
||||||
}
|
}
|
||||||
|
@ -59,9 +69,9 @@ 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;
|
||||||
|
|
||||||
|
updateLocationInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -88,23 +98,18 @@ 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()) {
|
||||||
|
if (frag == null) {
|
||||||
|
lg.trace("Fragment is null");
|
||||||
|
} else {
|
||||||
|
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 +124,27 @@ public class HomeFragment extends Fragment {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
initialized = true;
|
||||||
|
|
||||||
|
lg.trace("Saved instance state {}", savedInstanceState);
|
||||||
|
if (photos == null) {
|
||||||
|
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;
|
||||||
|
if (photos == null) {
|
||||||
|
photos = new ArrayList<>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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) {
|
||||||
|
@ -157,41 +183,48 @@ public class HomeFragment extends Fragment {
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
;
|
||||||
initialized = true;
|
|
||||||
|
|
||||||
return inflatedView;
|
return inflatedView;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fetchAdditionalPhotos() throws InterruptedException {
|
private void fetchAdditionalPhotos() throws InterruptedException {
|
||||||
|
|
||||||
if (noMorePhotos) {
|
|
||||||
lg.trace("No more photos - last query was zero result");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!initialized) {
|
|
||||||
lg.trace("Fetching additional photos blocked till system is initialized");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (getView() == null) {
|
|
||||||
lg.trace("Application still not initialized");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
final FragmentActivity activity = getActivity();
|
final FragmentActivity activity = getActivity();
|
||||||
if (activity == null) {
|
if (activity == null) {
|
||||||
lg.trace("Activity shouldn't be null. No headless fragment");
|
lg.trace("Activity shouldn't be null. No headless fragment");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MainActivity mainActivity = (MainActivity)getActivity();
|
||||||
|
|
||||||
|
if (noMorePhotos) {
|
||||||
|
lg.trace("No more photos - last query was zero result");
|
||||||
|
mainActivity.hideProgress();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!initialized) {
|
||||||
|
lg.trace("Fetching additional photos blocked till system is initialized");
|
||||||
|
mainActivity.hideProgress();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (getView() == null) {
|
||||||
|
lg.trace("Application still not initialized");
|
||||||
|
mainActivity.hideProgress();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
LocationManager locationService = (LocationManager)getActivity().getSystemService(Context.LOCATION_SERVICE);
|
||||||
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
||||||
|
|
||||||
if (location == null) {
|
if (location == null) {
|
||||||
lg.info("Location still not available");
|
lg.info("Location still not available");
|
||||||
Toast.makeText(activity, "Location still not available", Toast.LENGTH_SHORT).show();
|
Toast.makeText(activity, "Location still not available", Toast.LENGTH_SHORT).show();
|
||||||
|
mainActivity.hideProgress();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,7 +236,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 +244,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
|
||||||
|
@ -255,9 +288,13 @@ public class HomeFragment extends Fragment {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MainActivity mainActivity = (MainActivity) getActivity();
|
||||||
|
|
||||||
|
LocationManager locationService = (LocationManager) getActivity().getSystemService(Context.LOCATION_SERVICE);
|
||||||
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
||||||
if (location == null) {
|
if (location == null) {
|
||||||
lg.info("Location is still not available");
|
lg.info("Location is still not available");
|
||||||
|
mainActivity.hideProgress();
|
||||||
Toast.makeText(getActivity(), "Location is still not available", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), "Location is still not available", Toast.LENGTH_SHORT).show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -275,8 +312,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 +334,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() {
|
||||||
|
@ -343,7 +378,7 @@ public class HomeFragment extends Fragment {
|
||||||
lg.warn("Activity should'nt be null. No headless fragment");
|
lg.warn("Activity should'nt be null. No headless fragment");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
locationService = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE);
|
LocationManager locationService = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE);
|
||||||
Location currLocation = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
Location currLocation = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
||||||
lg.trace("Current location: {}, locationInfo: {}", currLocation, locationInfo);
|
lg.trace("Current location: {}, locationInfo: {}", currLocation, locationInfo);
|
||||||
if (currLocation != null && locationInfo != null) {
|
if (currLocation != null && locationInfo != null) {
|
||||||
|
@ -372,6 +407,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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@ import pl.tpolgrabia.urbanexplorer.utils.NumberUtils;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.WikiAppResponseCallback;
|
import pl.tpolgrabia.urbanexplorer.utils.WikiAppResponseCallback;
|
||||||
import pl.tpolgrabia.urbanexplorer.utils.WikiUtils;
|
import pl.tpolgrabia.urbanexplorer.utils.WikiUtils;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import static android.content.Context.LOCATION_SERVICE;
|
import static android.content.Context.LOCATION_SERVICE;
|
||||||
|
@ -42,19 +43,37 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
private static final double WIKI_DEF_RADIUS = 10.0;
|
private static final double WIKI_DEF_RADIUS = 10.0;
|
||||||
private static final long WIKI_DEF_LIMIT = 100;
|
private static final long WIKI_DEF_LIMIT = 100;
|
||||||
public static final String TAG = WikiLocationsFragment.class.getSimpleName();
|
public static final String TAG = WikiLocationsFragment.class.getSimpleName();
|
||||||
|
private static final String WIKI_APP_OBJECTS = "WIKI_APP_OBJECTS";
|
||||||
private LocationManager locationService;
|
private LocationManager locationService;
|
||||||
private TextView currentLocation;
|
private TextView currentLocation;
|
||||||
|
private ArrayList<WikiAppObject> appObjects;
|
||||||
|
private int lastFetchSize = -1;
|
||||||
|
|
||||||
public WikiLocationsFragment() {
|
public WikiLocationsFragment() {
|
||||||
// Required empty public constructor
|
// Required empty public constructor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
lg.trace("onCreate");
|
||||||
|
appObjects = savedInstanceState == null ? new ArrayList<WikiAppObject>()
|
||||||
|
: (ArrayList<WikiAppObject>)savedInstanceState.getSerializable(WIKI_APP_OBJECTS);;
|
||||||
|
}
|
||||||
|
|
||||||
@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
|
||||||
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()) {
|
||||||
|
if (frag == null) {
|
||||||
|
lg.trace("Got null fragment");
|
||||||
|
} else {
|
||||||
|
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);
|
||||||
|
@ -63,19 +82,41 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
mainActivity.getLocationCallback().addCallback(new StandardLocationListenerCallback() {
|
mainActivity.getLocationCallback().addCallback(new StandardLocationListenerCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void callback(Location location) {
|
public void callback(Location location) {
|
||||||
|
lastFetchSize = -1;
|
||||||
|
appObjects = new ArrayList<>();
|
||||||
updateLocationInfo();
|
updateLocationInfo();
|
||||||
fetchWikiLocations();
|
fetchWikiLocations();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ListView locations = (ListView) inflatedView.findViewById(R.id.wiki_places);
|
||||||
|
locations.setOnItemLongClickListener(new FetchWikiLocationsCallback(WikiLocationsFragment.this, appObjects));
|
||||||
|
locations.setAdapter(new WikiLocationsAdapter(getActivity(), appObjects));
|
||||||
|
|
||||||
return inflatedView;
|
return inflatedView;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void fetchWikiLocations() {
|
public void fetchWikiLocations() {
|
||||||
lg.trace("Fetch wiki locations");
|
lg.trace("Fetch wiki locations");
|
||||||
|
|
||||||
|
MainActivity mainActivity = (MainActivity) getActivity();
|
||||||
|
|
||||||
|
if (lastFetchSize == 0) {
|
||||||
|
lg.trace("There is no results");
|
||||||
|
mainActivity.hideProgress();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!appObjects.isEmpty()) {
|
||||||
|
lg.trace("There are fetched objects");
|
||||||
|
mainActivity.hideProgress();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
final FragmentActivity activity = getActivity();
|
final FragmentActivity activity = getActivity();
|
||||||
if (activity == null) {
|
if (activity == null) {
|
||||||
lg.warn("Activity shouldn't be null. No headless fragment");
|
lg.warn("Activity shouldn't be null. No headless fragment");
|
||||||
|
mainActivity.hideProgress();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(activity));
|
||||||
|
@ -83,11 +124,13 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
if (location == null) {
|
if (location == null) {
|
||||||
lg.info("Sorry, location is still not available");
|
lg.info("Sorry, location is still not available");
|
||||||
Toast.makeText(activity, "Sorry, location is still not available", Toast.LENGTH_SHORT).show();
|
Toast.makeText(activity, "Sorry, location is still not available", Toast.LENGTH_SHORT).show();
|
||||||
|
mainActivity.hideProgress();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getView() == null) {
|
if (getView() == null) {
|
||||||
lg.info("Wiki view is not yet initialized");
|
lg.info("Wiki view is not yet initialized");
|
||||||
|
mainActivity.hideProgress();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,8 +140,12 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
fetchRadiusLimit(),
|
fetchRadiusLimit(),
|
||||||
fetchSearchLimit(),
|
fetchSearchLimit(),
|
||||||
new WikiAppResponseCallback() {
|
new WikiAppResponseCallback() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void callback(WikiStatus status, final List<WikiAppObject> appObjects) {
|
public void callback(WikiStatus status, final List<WikiAppObject> objects) {
|
||||||
|
appObjects.clear();
|
||||||
|
appObjects.addAll(objects);
|
||||||
|
|
||||||
// handling here wiki locations
|
// handling here wiki locations
|
||||||
if (status != WikiStatus.SUCCESS) {
|
if (status != WikiStatus.SUCCESS) {
|
||||||
Toast.makeText(activity, "Sorry, currently we have problem with interfacing wiki" +
|
Toast.makeText(activity, "Sorry, currently we have problem with interfacing wiki" +
|
||||||
|
@ -111,7 +158,7 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
ListView locations = (ListView) getView().findViewById(R.id.wiki_places);
|
ListView locations = (ListView) getView().findViewById(R.id.wiki_places);
|
||||||
locations.setOnItemLongClickListener(new FetchWikiLocationsCallback(WikiLocationsFragment.this, appObjects));
|
locations.setOnItemLongClickListener(new FetchWikiLocationsCallback(WikiLocationsFragment.this, appObjects));
|
||||||
locations.setAdapter(new WikiLocationsAdapter(activity, appObjects));
|
locations.setAdapter(new WikiLocationsAdapter(activity, appObjects));
|
||||||
if (appObjects.isEmpty()) {
|
if (objects.isEmpty()) {
|
||||||
Toast.makeText(getActivity(), "No results", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), "No results", Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,4 +214,11 @@ public class WikiLocationsFragment extends Fragment {
|
||||||
super.onPause();
|
super.onPause();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
|
super.onSaveInstanceState(outState);
|
||||||
|
lg.trace("onSaveInstanceState");
|
||||||
|
|
||||||
|
outState.putSerializable(WIKI_APP_OBJECTS, appObjects);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -175,13 +175,15 @@ public class WikiUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
AQuery aq = NetUtils.createProxyAQueryInstance(ctx);
|
AQuery aq = NetUtils.createProxyAQueryInstance(ctx);
|
||||||
aq.ajax("https://en.wikipedia.org/w/api.php" +
|
final String queryUrl = "https://en.wikipedia.org/w/api.php" +
|
||||||
"?action=query" +
|
"?action=query" +
|
||||||
"&list=geosearch" +
|
"&list=geosearch" +
|
||||||
"&gscoord=" + latitude + "%7C" + longitude +
|
"&gscoord=" + latitude + "%7C" + longitude +
|
||||||
"&gsradius=" + String.format("%.2f", radius) +
|
"&gsradius=" + String.format("%.2f", radius) +
|
||||||
"&gslimit=" + limit +
|
"&gslimit=" + limit +
|
||||||
"&format=json", JSONObject.class, new AjaxCallback<JSONObject>() {
|
"&format=json";
|
||||||
|
lg.trace("GeoSearch wiki API url: {}", queryUrl);
|
||||||
|
aq.ajax(queryUrl, JSONObject.class, new AjaxCallback<JSONObject>() {
|
||||||
@Override
|
@Override
|
||||||
public void callback(String url, JSONObject object, AjaxStatus status) {
|
public void callback(String url, JSONObject object, AjaxStatus status) {
|
||||||
lg.trace("Finished waiting for {} with status {}:{} and response: {}",
|
lg.trace("Finished waiting for {} with status {}:{} and response: {}",
|
||||||
|
|
|
@ -5,65 +5,74 @@
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
tools:context="pl.tpolgrabia.urbanexplorer.fragments.PanoramioShowerFragment">
|
tools:context="pl.tpolgrabia.urbanexplorer.fragments.PanoramioShowerFragment">
|
||||||
|
|
||||||
<ImageView android:id="@+id/photo_container"
|
<ScrollView android:layout_width="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
||||||
android:layout_height="320dp"/>
|
<LinearLayout android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<ImageView android:id="@+id/photo_container"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="match_parent"
|
||||||
<TextView android:layout_width="wrap_content"
|
android:layout_height="320dp"/>
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="Title: "/>
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_title"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"/>
|
<TextView android:layout_width="wrap_content"
|
||||||
</LinearLayout>
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Title: "/>
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<TextView android:id="@+id/photo_title"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="wrap_content"
|
||||||
<TextView android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
||||||
android:layout_height="wrap_content"
|
</LinearLayout>
|
||||||
android:text="Author: "/>
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_author"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"/>
|
<TextView android:layout_width="wrap_content"
|
||||||
</LinearLayout>
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Author: "/>
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<TextView android:id="@+id/photo_author"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="wrap_content"
|
||||||
<TextView android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
||||||
android:layout_height="wrap_content"
|
</LinearLayout>
|
||||||
android:text="Upload date: "/>
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_upload"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"/>
|
<TextView android:layout_width="wrap_content"
|
||||||
</LinearLayout>
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Upload date: "/>
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<TextView android:id="@+id/photo_upload"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="wrap_content"
|
||||||
<TextView android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
||||||
android:layout_height="wrap_content"
|
</LinearLayout>
|
||||||
android:text="Location: "/>
|
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_location"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"
|
<TextView android:layout_width="wrap_content"
|
||||||
android:textColor="@color/blue" />
|
android:layout_height="wrap_content"
|
||||||
</LinearLayout>
|
android:text="Location: "/>
|
||||||
|
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<TextView android:id="@+id/photo_location"
|
||||||
android:layout_height="wrap_content">
|
android:layout_width="wrap_content"
|
||||||
<TextView android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:textColor="@color/blue" />
|
||||||
android:text="Panoramio url"/>
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView android:id="@+id/photo_url"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"/>
|
<TextView android:layout_width="wrap_content"
|
||||||
</LinearLayout>
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Panoramio url"/>
|
||||||
|
|
||||||
|
<TextView android:id="@+id/photo_url"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -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
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
Binary file not shown.
After Width: | Height: | Size: 300 KiB |
Binary file not shown.
After Width: | Height: | Size: 249 KiB |
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
Binary file not shown.
After Width: | Height: | Size: 186 KiB |
Loading…
Reference in New Issue