Reputation: 1067
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).
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?
Upvotes: 0
Views: 387
Reputation: 710
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)
Upvotes: 1