forked from organicmaps/organicmaps
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:
commit
d719020c9c
1 changed files with 15 additions and 5 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue