0

I currently have this tab view which I followed from this tutorial. Everything works fine until I noticed that the onCreateView is not called on any of the tab. I've looked around here and there for solution but I still can't solve. Here is my code:

activity_pref_main_container.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/main_layout"
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"
tools:context=".PrefActivityMain">

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="?attr/colorPrimary"
    android:elevation="6dp"
    android:minHeight="?attr/actionBarSize"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

<android.support.design.widget.TabLayout
    android:id="@+id/tab_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/toolbar"
    android:background="?attr/colorPrimary"
    android:elevation="6dp"
    android:minHeight="?attr/actionBarSize"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/tab_layout"/>

</RelativeLayout>

PrefMainActivity.class

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_pref_main_container);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    toolbar.setTitle(R.string.preference_title);
    setSupportActionBar(toolbar);

    new PrefActivityListAsync(this,this,specialization).execute();
    new PrefActivityListAsync(this,this,position).execute();
    new PrefActivityListAsync(this,this,type).execute();

    TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
    tabLayout.addTab(tabLayout.newTab().setText("Specialization"));
    tabLayout.addTab(tabLayout.newTab().setText("Position"));
    tabLayout.addTab(tabLayout.newTab().setText("Type"));
    tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);

    final ViewPager viewPager = (ViewPager) findViewById(R.id.pager);
    final PrefAdapter adapter = new PrefAdapter(getSupportFragmentManager(), tabLayout.getTabCount());
    viewPager.setAdapter(adapter);
    viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
    viewPager.setOffscreenPageLimit(2);
    tabLayout.setOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
        @Override
        public void onTabSelected(TabLayout.Tab tab) {
            viewPager.setCurrentItem(tab.getPosition());
        }

        @Override
        public void onTabUnselected(TabLayout.Tab tab) {

        }

        @Override
        public void onTabReselected(TabLayout.Tab tab) {

        }
    });
}

PrefAdapder.class

 public class PrefAdapter extends FragmentPagerAdapter {

int mNumOfTabs;

public PrefAdapter(FragmentManager fm, int NumOfTabs) {
    super(fm);
    this.mNumOfTabs = NumOfTabs;
}

@Override
public Fragment getItem(int position) {
    switch (position) {
        case 0:
            PrefActivitySpecialization tab1 = new PrefActivitySpecialization();
            return tab1;
        case 1:
            PrefActivityPosition tab2 = new PrefActivityPosition();
            return tab2;
        case 2:
            PrefActivityType tab3 = new PrefActivityType();
            return tab3;
        default:
            return null;
    }
}

@Override
public int getCount() {
    return 0;
}
}

one out of three fragment class PrefActivitySpecialization.class

public class PrefActivitySpecialization extends 
android.support.v4.app.Fragment {

private ArrayList<DataPrefSpecialization> dataPrefSpecializationArrayList;

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup 
container, Bundle savedInstanceState) {
    View view = 
inflater.inflate(R.layout.activity_pref_specialization_container, container, 
false);

    dataPrefSpecializationArrayList = ((PrefActivityMain) 
getActivity()).getDataPrefSpecialization();

    for(int i = 0; i < dataPrefSpecializationArrayList.size(); i++){
       Log.d("Check Specialization 
",dataPrefSpecializationArrayList.get(i).getName());
    }

    return inflater.inflate(R.layout.activity_pref_specialization_container, container, false);
}
}
Pushpendra
  • 2,791
  • 4
  • 26
  • 49
azriebakri
  • 1,131
  • 2
  • 11
  • 36

4 Answers4

7

You should make changes at two place:

1) Change

@Override
public int getCount() {
return 0;
}

to

@Override
public int getCount() {
return mNumOfTabs;
}

2) Change

return inflater.inflate(R.layout.activity_pref_specialization_container, container, false);

to

return view;
Piyush
  • 18,895
  • 5
  • 32
  • 63
2

public PrefAdapter(FragmentManager fm, int NumOfTabs)

You must declare Count No NumOfTabs

int getCount ()-> How many items are in the data set represented by this Adapter.

 @Override
public int getCount() 
{
    return mNumOfTabs;
}

Do not'

return inflater.inflate(R.layout.activity_pref_specialization_container, container, false);

Do

return view ;
IntelliJ Amiya
  • 74,896
  • 15
  • 165
  • 198
1

Your getCount() method is returning 0;

Dishonered
  • 8,449
  • 9
  • 37
  • 50
0

There is another (possibly easier) way to connect the view pager with the tab layout-

First, in your PrefAdapter class, override the getPageTitle() method and return your tab titles for the respective tab positions from there.

In your PrefMainActivity class, remove all the lines like- tabLayout.addTab(...)

Add the following line instead- tabLayout.setupWithViewPager(viewPager);

H. Saxena
  • 335
  • 4
  • 11