コード例 #1
0
ファイル: NavbarFragment.cs プロジェクト: jhawkzz/CCVApp
        public void OnAnimationUpdate(ValueAnimator animation)
        {
            // update the container position
            int xPos = ((Java.Lang.Integer)animation.GetAnimatedValue("")).IntValue();

            PanContainerViews( xPos );
        }
コード例 #2
0
ファイル: NavToolbar.cs プロジェクト: Higherbound/HBMobileApp
        public void OnAnimationUpdate(ValueAnimator animation)
        {
            // update the mask scale
            int yPos = ((Java.Lang.Integer)animation.GetAnimatedValue("")).IntValue();

            ButtonLayout.SetY( yPos );
        }