forked from organicmaps/organicmaps
[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:
parent
fdd96034d2
commit
0692b20045
2 changed files with 9 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue