I build an application which has tabs in it, and using ViewPager
to swipe between the tabs.
Is it possible that one tab will show firstFragment
, and then when pressing a Button
will show firstFragment
and secondFragment
?
I build an application which has tabs in it, and using ViewPager
to swipe between the tabs.
Is it possible that one tab will show firstFragment
, and then when pressing a Button
will show firstFragment
and secondFragment
?
Copyright © 2021 Jogjafile Inc.
Of coarse you can. When you bind ViewPager to TabLayout you use adapter, which extends FragmentPagerAdapter, that adapter stores list of all fragments and layout texts. Just replace fragment in it and invalidate result. But, this should by done from Activity, which has ViewPager and TabLayout. Define interface in your first program, implement it in Activity and replace fragment on button click.