Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to avoid onCreateView() when swiping in tabs

I have an application with an activity and 3 swipable tabs(fragments). I have some heavily created UI elements inside tabs which take some time to be created and it's ok for the first run, but the views are recreated every time I swipe them.

When I select a tab, the other tab calls onStop() and when I select the previous tab again,onCreateView() is called again and view is repopulated which slows down and blocks UI thread.

What is the correct way to create fragments inside tabs ONCE and avoid recreating their view when swiping between other tabs?

like image 885
Mehdi Fanai Avatar asked Jun 03 '13 13:06

Mehdi Fanai


2 Answers

To add to what CommnosWare stated, if you are using a view pager, you can simply call mViewPager.setOffscreenPageLimit(3); to keep all three in memory. But if your UI is too heavy, you may notice some jank. So try revising your UI setup code.

like image 90
daniel_c05 Avatar answered Nov 15 '22 08:11

daniel_c05


I have some heavily created UI elements inside tabs which take some time to be created

If "some time" is more than ~5 milliseconds, your app is broken and needs to be fixed. Use Traceview to determine precisely where you are spending your time, then repair matters so that it takes less time on the main application thread.

What is the correct way to create fragments inside tabs ONCE and avoid recreating their view when swipping between other tabs?

AFAIK, FragmentPagerAdapter should not have the effect that you are describing (though FragmentStatePagerAdapter will). But, again, if you fix your onCreateView() performance issue, even FragmentStatePagerAdapter will not post a problem.

like image 23
CommonsWare Avatar answered Nov 15 '22 08:11

CommonsWare