use of net.osmand.plus.activities.search.SearchActivity in project Osmand by osmandapp.
the class FavoritesListFragment method onPause.
@Override
public void onPause() {
super.onPause();
if (getActivity() instanceof SearchActivity) {
OsmandApplication app = getMyApplication();
app.getLocationProvider().removeCompassListener(this);
app.getLocationProvider().addCompassListener(app.getLocationProvider().getNavigationInfo());
compassRegistered = false;
}
}
Aggregations