forked from organicmaps/organicmaps-tmp
[android] Added onResume method to NavigationButtonsAnimationController.
This commit is contained in:
parent
2fb123ea9e
commit
70f68e06e7
2 changed files with 13 additions and 1 deletions
|
@ -867,6 +867,8 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
mOnmapDownloader.onResume();
|
||||
if (mNavigationController != null)
|
||||
mNavigationController.onResume();
|
||||
if(mNavAnimationController != null)
|
||||
mNavAnimationController.onResume();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue