From 9c00790b4d61bd6ae2d06912ba5ba33e4a703026 Mon Sep 17 00:00:00 2001 From: Dmitry Donskoy Date: Tue, 23 Apr 2019 16:07:37 +0300 Subject: [PATCH] [android] Fixed review notes --- android/src/com/mapswithme/maps/MwmActivity.java | 12 +++++++++--- .../mapswithme/maps/routing/RoutingController.java | 4 ++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index c5c5f4cd32..d26d1dcfa9 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -1917,6 +1917,15 @@ public class MwmActivity extends BaseMwmFragmentActivity } } + @Override + public void onStartRouteBuilding() + { + if (mRoutingPlanInplaceController == null) + return; + + mRoutingPlanInplaceController.hideDrivingOptionsView(); + } + @Override public void onTaxiInfoReceived(@NonNull TaxiInfo info) { @@ -1980,9 +1989,6 @@ public class MwmActivity extends BaseMwmFragmentActivity @Override public void onBuiltRoute() { - if (mRoutingPlanInplaceController != null) - mRoutingPlanInplaceController.hideDrivingOptionsView(); - if (!RoutingController.get().isPlanning()) return; diff --git a/android/src/com/mapswithme/maps/routing/RoutingController.java b/android/src/com/mapswithme/maps/routing/RoutingController.java index 98938be0e7..cd132e3afc 100644 --- a/android/src/com/mapswithme/maps/routing/RoutingController.java +++ b/android/src/com/mapswithme/maps/routing/RoutingController.java @@ -87,6 +87,7 @@ public class RoutingController implements TaxiManager.TaxiListener * @param progress progress to be displayed. * */ void updateBuildProgress(@IntRange(from = 0, to = 100) int progress, @Framework.RouterType int router); + void onStartRouteBuilding(); } private static final int NO_WAITING_POI_PICK = -1; @@ -337,6 +338,9 @@ public class RoutingController implements TaxiManager.TaxiListener } setBuildState(BuildState.BUILDING); + if (mContainer != null) + mContainer.onStartRouteBuilding(); + updatePlan(); Statistics.INSTANCE.trackRouteBuild(mLastRouterType, getStartPoint(), getEndPoint());