Fix lag with many channels on main page

Disable loading all tabs at once, since there can be many of them, and use default strategy of only keeping in memory the two tabs adjacent to the current tab.
This commit is contained in:
Stypox 2023-12-20 22:46:24 +01:00
parent e876647af5
commit c0f8d145f8
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23

View file

@ -194,7 +194,6 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte
} }
binding.pager.setAdapter(null); binding.pager.setAdapter(null);
binding.pager.setOffscreenPageLimit(tabsList.size());
binding.pager.setAdapter(pagerAdapter); binding.pager.setAdapter(pagerAdapter);
updateTabsIconAndDescription(); updateTabsIconAndDescription();