Merge pull request #5337 from goblinr/MAPSME-139-ext-fix-navigation-tablet-landscape

[android] Fix start navigation in the tablet landscape mode
This commit is contained in:
Aleksandr Zatsepin 2017-02-06 15:44:01 +03:00 committed by GitHub
commit d719020c9c

View file

@ -653,6 +653,19 @@ public class MwmActivity extends BaseMwmFragmentActivity
return false;
}
private void closeAllFloatingPanels()
{
if (!mIsFragmentContainer)
return;
closePlacePage();
if (removeCurrentFragment(true))
{
InputUtils.hideKeyboard(mFadeView);
mFadeView.fadeOut();
}
}
public void closeMenu(String statEvent, String alohaStatEvent, @Nullable Runnable procAfterClose)
{
Statistics.INSTANCE.trackEvent(statEvent);
@ -1562,14 +1575,11 @@ public class MwmActivity extends BaseMwmFragmentActivity
else
{
if (mIsFragmentContainer)
{
closeSidePanel();
adjustTraffic(0, UiUtils.getStatusBarHeight(getApplicationContext()));
}
else
{
mRoutingPlanInplaceController.show(false);
}
closeAllFloatingPanels();
if (completionListener != null)
completionListener.run();