Fixed issue with not receiving location data.
parent
840f2025c4
commit
d7bc9707d3
|
@ -33,7 +33,6 @@ public class HomeFragment extends Fragment implements LocationListener {
|
|||
private boolean locationEnabled;
|
||||
private LocationManager locationService;
|
||||
private String locationProvider;
|
||||
private HomeFragment homeFrag;
|
||||
private boolean locationServicesActivated = false;
|
||||
|
||||
public HomeFragment() {
|
||||
|
@ -64,20 +63,13 @@ public class HomeFragment extends Fragment implements LocationListener {
|
|||
return inflater.inflate(R.layout.fragment_home, container, false);
|
||||
}
|
||||
|
||||
public void setLocationData(double lat, double lng) {
|
||||
TextView locationInfo = (TextView) getActivity().findViewById(R.id.locationInfo);
|
||||
locationInfo.setText("Location: (" + lat + "," + lng + ")");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLocationChanged(Location location) {
|
||||
Log.i(CLASS_TAG, "Location provider changed: " + location);
|
||||
double lat = location.getLatitude();
|
||||
double lng = location.getLongitude();
|
||||
HomeFragment homeFrag = (HomeFragment) getActivity()
|
||||
.getSupportFragmentManager()
|
||||
.findFragmentById(R.id.home);
|
||||
homeFrag.setLocationData(lat, lng);
|
||||
TextView locationInfo = (TextView) getActivity().findViewById(R.id.locationInfo);
|
||||
locationInfo.setText("Location: (" + lat + "," + lng + ")");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -99,12 +91,11 @@ public class HomeFragment extends Fragment implements LocationListener {
|
|||
public void onResume() {
|
||||
super.onResume();
|
||||
|
||||
homeFrag = (HomeFragment) getChildFragmentManager().findFragmentById(R.id.home_frag);
|
||||
if (locationProvider != null) {
|
||||
locationService.requestLocationUpdates(locationProvider,
|
||||
MIN_TIME,
|
||||
MIN_DISTANCE,
|
||||
homeFrag);
|
||||
this);
|
||||
locationServicesActivated = true;
|
||||
Toast.makeText(getActivity(), "Location resumed", Toast.LENGTH_LONG).show();
|
||||
}
|
||||
|
@ -114,7 +105,7 @@ public class HomeFragment extends Fragment implements LocationListener {
|
|||
public void onPause() {
|
||||
super.onPause();
|
||||
if (locationServicesActivated) {
|
||||
locationService.removeUpdates(homeFrag);
|
||||
locationService.removeUpdates(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||
tools:context="pl.tpolgrabia.urbanexplorer.MainActivity">
|
||||
|
||||
<Toolbar android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:title="Urban explorer">
|
||||
|
||||
</Toolbar>
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue