2 fragments displayed dynamically in one tab of application

58 Views Asked by At

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?

1

There are 1 best solutions below

1
On

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.