[android] Added onResume method to NavigationButtonsAnimationController.

This commit is contained in:
Roman Romanov 2016-12-19 13:10:18 +04:00 committed by Vladimir Byko-Ianko
parent 2fb123ea9e
commit 70f68e06e7
2 changed files with 13 additions and 1 deletions

View file

@ -867,6 +867,8 @@ public class MwmActivity extends BaseMwmFragmentActivity
mOnmapDownloader.onResume();
if (mNavigationController != null)
mNavigationController.onResume();
if(mNavAnimationController != null)
mNavAnimationController.onResume();
}
@Override

View file

@ -30,11 +30,16 @@ class NavigationButtonsAnimationController
{
mZoomIn = zoomIn;
mZoomOut = zoomOut;
UiUtils.showIf(showZoomButtons(), mZoomIn, mZoomOut);
checkZoomButtonsVisibility();
mMyPosition = myPosition;
calculateBottomLimit();
}
private void checkZoomButtonsVisibility()
{
UiUtils.showIf(showZoomButtons(), mZoomIn, mZoomOut);
}
void disappearZoomButtons()
{
if (!showZoomButtons())
@ -253,4 +258,9 @@ class NavigationButtonsAnimationController
{
return Config.showZoomButtons();
}
public void onResume()
{
checkZoomButtonsVisibility();
}
}