Some debug informations for home frag.

master
Tomasz Półgrabia 2016-09-11 11:55:02 +02:00
parent ea13527be0
commit ec11154ae8
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,7 @@
package pl.tpolgrabia.urbanexplorer.utils;
/**
* Created by tpolgrabia on 11.09.16.
*/
public class WikiUtilsTest {
}

View File

@ -192,6 +192,10 @@ public class HomeFragment extends Fragment {
private void fetchPanoramioPhotos() { private void fetchPanoramioPhotos() {
final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity())); final Location location = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity()));
if (location == null) {
Toast.makeText(getActivity(), "Sorry, I didn't received yet any location update", Toast.LENGTH_SHORT).show();
return;
}
Double radiusX = fetchRadiusX(); Double radiusX = fetchRadiusX();
Double radiusY = fetchRadiusY(); Double radiusY = fetchRadiusY();
final String aqQuery = "http://www.panoramio.com/map/get_panoramas.php?" + final String aqQuery = "http://www.panoramio.com/map/get_panoramas.php?" +
@ -281,6 +285,7 @@ public class HomeFragment extends Fragment {
@Override @Override
public void onResume() { public void onResume() {
super.onResume();
updateLocationInfo(); updateLocationInfo();
} }
@ -288,7 +293,8 @@ public class HomeFragment extends Fragment {
TextView locationInfo = (TextView) getView().findViewById(R.id.locationInfo); TextView locationInfo = (TextView) getView().findViewById(R.id.locationInfo);
locationService = (LocationManager)getActivity().getSystemService(Context.LOCATION_SERVICE); locationService = (LocationManager)getActivity().getSystemService(Context.LOCATION_SERVICE);
Location currLocation = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity())); Location currLocation = locationService.getLastKnownLocation(LocationUtils.getDefaultLocation(getActivity()));
if (currLocation != null) { Log.v(CLASS_TAG, "Current location: " + currLocation + ", locationInfo: " + locationInfo);
if (currLocation != null && locationInfo != null) {
// update home fragment's location info // update home fragment's location info
locationInfo.setText("Location: " + currLocation.getLatitude() + "," + currLocation.getLongitude()); locationInfo.setText("Location: " + currLocation.getLatitude() + "," + currLocation.getLongitude());
} }