Reputation: 4840
How to hide FragmentStatePagerAdapter, I mean I created sliding tabs with this adapter and I want to hide everything and create new Fragment in whole screen.
Upvotes: 0
Views: 127
Reputation: 147
Have you tried to use ".setVisibility (View.GONE)"?
Documentation: http://developer.android.com/reference/android/view/View.html#setVisibility%28int%29
Upvotes: 2