Skip to content

Commit

Permalink
Changed rotate degrees
Browse files Browse the repository at this point in the history
  • Loading branch information
PopPsyA committed Jun 28, 2018
1 parent e5e5ef7 commit 531c09e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -145,7 +145,7 @@ public void showFABCinemaMenu(){
mViewForegroundStub.setVisibility(View.VISIBLE);
ViewCompat.setTranslationZ(mViewForegroundStub , 0.9f);
mFABCinemaMenu.animate()
.rotationBy(180);
.rotationBy(135);
mLinearLayoutAddToFavourite.animate()
.alphaBy(1)
.scaleX(1)
Expand All @@ -154,7 +154,7 @@ public void showFABCinemaMenu(){

@Override
public void hideFABCinemaMenu(){
mFABCinemaMenu.animate().rotationBy(-180);
mFABCinemaMenu.animate().rotationBy(-135);
mViewForegroundStub.setVisibility(View.GONE);
ViewCompat.setTranslationZ(mViewForegroundStub , 0f);
mLinearLayoutAddToFavourite.animate()
Expand Down

0 comments on commit 531c09e

Please sign in to comment.