[android-auto] Fix some bugs

Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
This commit is contained in:
Andrew Shkrob 2024-03-24 00:35:36 +01:00 committed by Roman Tsisyk
parent e8315bea34
commit 111a680290
2 changed files with 8 additions and 4 deletions

View file

@ -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

View file

@ -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;
}