Reputation: 1248
In my project i create my tabBar via ViewPager like this:
MainActivity.java
mViewPager = (ViewPager) findViewById(R.id.content_main_viewpager);
if ( mViewPager != null ) {
final ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
adapter.addFragment( new LandingSearch(), "" );
adapter.addFragment( new LandingWiki(), "" );
adapter.addFragment( new LandingForum(), "" );
mViewPager.setAdapter(adapter);
mViewPager.setOffscreenPageLimit( 3 );
final TabLayout tabs = (TabLayout) findViewById(R.id.content_main_tabs);
if ( tabs != null ) {
tabs.post(new Runnable() {
@Override
public void run() {
tabs.setupWithViewPager( mViewPager );
tabs.getTabAt(0).setIcon(R.drawable.ic_tab_search);
tabs.getTabAt(1).setIcon(R.drawable.ic_tab_favorite);
tabs.getTabAt(2).setIcon(R.drawable.ic_tab_forum);
}
});
}
}
app_bar_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:fitsSystemWindows="true"
tools:context="com.mathleaks.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<com.mathleaks.ui.util.MainViewPager
android:id="@+id/content_main_viewpager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:visibility="visible"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</com.mathleaks.ui.util.MainViewPager>
<android.support.design.widget.TabLayout
android:id="@+id/content_main_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="center"
android:animateLayoutChanges="true"
android:background="@color/background"
app:background="@color/background"
app:layout_scrollFlags="scroll|enterAlways" >
</android.support.design.widget.TabLayout>
</LinearLayout>
Now I would like to hide my tabBar on runtime in my 2nd tabBar fragment (LandingWiki) when a special event occurs in the app. So far I have not been successful.
final TabLayout tabs = (TabLayout)findViewById(R.id.content_main_tabs);
tabs.setVisibility(View.GONE);
Results in:
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.support.design.widget.TabLayout.setVisibility(int)' on a null object reference
Upvotes: 2
Views: 4945
Reputation: 6160
this is probably caused by the fact that findViewById
refers to the fragment instead of main activity.
You can do the following: from within your fragment (after the onActivityCreated event)
final TabLayout tabs = (TabLayout)getActivity().findViewById(R.id.content_main_tabs);
tabs.setVisibility(View.GONE);
Upvotes: 8