[android] Fixed restoring the state during configuration change

[android] If route was saved but then the configuration change was come we should delete previously saved route, because in the next onCreate method call the obsolete route will be restored but it's a not case when we actually need to restore route.
This commit is contained in:
Александр Зацепин 2017-08-09 15:09:00 +03:00 committed by Roman Kuznetsov
parent fdd96034d2
commit 0692b20045
2 changed files with 9 additions and 0 deletions

View file

@ -961,6 +961,10 @@ public class MwmActivity extends BaseMwmFragmentActivity
if (!isChangingConfigurations())
RoutingController.get().saveRoute();
else
// We no longer need in a saved route if it's a configuration changing: theme switching,
// orientation changing, etc. Otherwise, the saved route might be restored at undesirable moment.
RoutingController.get().deleteSavedRoute();
super.onSaveInstanceState(outState);
}

View file

@ -376,6 +376,11 @@ public class RoutingController implements TaxiManager.TaxiListener
Framework.nativeSaveRoutePoints();
}
public void deleteSavedRoute()
{
Framework.nativeDeleteSavedRoutePoints();
}
public void prepare(boolean canUseMyPositionAsStart, @Nullable MapObject endPoint)
{
prepare(canUseMyPositionAsStart, endPoint, false);