From ec11154ae8cd8b2fe0d42e018cc1a475460e9439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Sun, 11 Sep 2016 11:55:02 +0200 Subject: [PATCH] Some debug informations for home frag. --- .../pl/tpolgrabia/urbanexplorer/utils/WikiUtilsTest.java | 7 +++++++ .../tpolgrabia/urbanexplorer/fragments/HomeFragment.java | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 app/src/androidTest/java/pl/tpolgrabia/urbanexplorer/utils/WikiUtilsTest.java diff --git a/app/src/androidTest/java/pl/tpolgrabia/urbanexplorer/utils/WikiUtilsTest.java b/app/src/androidTest/java/pl/tpolgrabia/urbanexplorer/utils/WikiUtilsTest.java new file mode 100644 index 0000000..4ba000c --- /dev/null +++ b/app/src/androidTest/java/pl/tpolgrabia/urbanexplorer/utils/WikiUtilsTest.java @@ -0,0 +1,7 @@ +package pl.tpolgrabia.urbanexplorer.utils; + +/** + * Created by tpolgrabia on 11.09.16. + */ +public class WikiUtilsTest { +} diff --git a/app/src/main/java/pl/tpolgrabia/urbanexplorer/fragments/HomeFragment.java b/app/src/main/java/pl/tpolgrabia/urbanexplorer/fragments/HomeFragment.java index 187ed78..803b803 100644 --- a/app/src/main/java/pl/tpolgrabia/urbanexplorer/fragments/HomeFragment.java +++ b/app/src/main/java/pl/tpolgrabia/urbanexplorer/fragments/HomeFragment.java @@ -192,6 +192,10 @@ public class HomeFragment extends Fragment { private void fetchPanoramioPhotos() { 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 radiusY = fetchRadiusY(); final String aqQuery = "http://www.panoramio.com/map/get_panoramas.php?" + @@ -281,6 +285,7 @@ public class HomeFragment extends Fragment { @Override public void onResume() { + super.onResume(); updateLocationInfo(); } @@ -288,7 +293,8 @@ public class HomeFragment extends Fragment { TextView locationInfo = (TextView) getView().findViewById(R.id.locationInfo); locationService = (LocationManager)getActivity().getSystemService(Context.LOCATION_SERVICE); 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 locationInfo.setText("Location: " + currLocation.getLatitude() + "," + currLocation.getLongitude()); }