Ejemplo n.º 1
0
        void GoToAlertsTab()
        {
            mProfileContainer.Visibility  = ViewStates.Gone;
            mProjectsContainer.Visibility = ViewStates.Gone;
            mAlertsContainer.Visibility   = ViewStates.Visible;
            if (mCurrentTab == HomeTab.Profile)
            {
                AnimationUtil.OutToLeft(mProfileContainer);
            }
            else if (mCurrentTab == HomeTab.Projects)
            {
                AnimationUtil.OutToLeft(mProjectsContainer);
            }

            AnimationUtil.InFromRight(mAlertsContainer);
        }