forked from organicmaps/organicmaps
[android-auto] Fix some bugs
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
This commit is contained in:
parent
e8315bea34
commit
111a680290
2 changed files with 8 additions and 4 deletions
|
@ -1120,7 +1120,8 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
BookmarkManager.INSTANCE.removeLoadingListener(this);
|
||||
LocationHelper.from(this).removeListener(this);
|
||||
LocationState.nativeRemoveListener();
|
||||
RoutingController.get().detach();
|
||||
if (mDisplayManager.isDeviceDisplayUsed())
|
||||
RoutingController.get().detach();
|
||||
IsolinesManager.from(getApplicationContext()).detach();
|
||||
mSearchController.detach();
|
||||
Utils.keepScreenOn(false, getWindow());
|
||||
|
@ -1320,8 +1321,11 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
if (navBottomSheetLineFrame != null)
|
||||
offsetY = Math.max(offsetY, navBottomSheetLineFrame.getHeight() + navBottomSheetNavBar.getHeight());
|
||||
|
||||
mMapFragment.updateBottomWidgetsOffset(offsetX, offsetY);
|
||||
mMapFragment.updateMyPositionRoutingOffset(offsetY);
|
||||
if (mDisplayManager.isDeviceDisplayUsed())
|
||||
{
|
||||
mMapFragment.updateBottomWidgetsOffset(offsetX, offsetY);
|
||||
mMapFragment.updateMyPositionRoutingOffset(offsetY);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -220,7 +220,7 @@ public class SurfaceRenderer implements DefaultLifecycleObserver, SurfaceCallbac
|
|||
mMap.onStart();
|
||||
mMap.setCallbackUnsupported(this::reportUnsupported);
|
||||
mMap.setMapRenderingListener(this);
|
||||
mMap.updateMyPositionRoutingOffset(0);
|
||||
UiThread.runLater(() -> mMap.updateMyPositionRoutingOffset(0));
|
||||
|
||||
mIsRunning = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue