0

I have an app with a navigation drawer and tab bar (view pager) and when the nav. drawer is opened, 3 distinct animations occur, which together make the experience very un-smooth (clunky).

  1. the navigation drawer opens
  2. the tab bar disappears
  3. the action bar disappears (i am hiding the action bar when nav drawer is opened).

all these combine to create a non-optimal experience.

is there a way to reduce/eliminate these animations but keep the sliding of the nav drawer animation?

droideckar
  • 1,077
  • 10
  • 20

1 Answers1

1

First, don't use action bar tabs because they are deprecated (find an alternative Action bar navigation modes are deprecated in Android L).

Second, optimize fragments that are contained in ViewPager.

Third, optimize everything else (like navigation drawer listview)

Community
  • 1
  • 1
Šime Tokić
  • 700
  • 1
  • 9
  • 22