10

i got viewpager with 4 tabs .. in each tab there is a fragment. my first tab is a fragment with a form (for example Users) after i click save, the data is inserted in the database. my second tab is another fragment with form but it uses data from the first tab (i am getting it from the database) to populate a spinner. now after i successfully inserted data from my first tab, in my second tab the spinner is empty. since my db query is implemented in onCreateView() in the second fragment, its called only once when the application is started, so changing between tab 1 i tab2 doesn't starts onCreateView() or even onResume(). The interesting thing for me is that if i go to tab4 and then return to tab2, my data is in my spinner properly, so somehow swiping two tabs away from my current tab refreshing my fragment. my question is how can i achieve proper refresh to my fragment when onCreateView() is called only once ?

Edit i tried to put that method psykhi suggested like that:

    this.mViewPager.setOffscreenPageLimit(0);
    this.mViewPager.setAdapter(this.mPagerAdapter);
    this.mViewPager.setOnPageChangeListener(this);

but it's not working for me. Am i missing something ?

BlastFire
  • 217
  • 1
  • 5
  • 14

6 Answers6

14

The best way that I have discovered to simulate a "setOffscreenPageLimit(0)" behavior is by using an OnPageChangeListener in conjunction with overriding the getItemPosition method in your adapter. Something like this:

In your custom pager adapter:

@Override
public int getItemPosition(Object object) {
     return POSITION_NONE;
}

Then in your Activity containing the ViewPager:

final MyPagerAdapter adapter = new MyPagerAdapter();
pager.setAdapter(adapter);
pager.setOnPageChangeListener(new OnPageChangeListener() {
     @Override
     public void onPageSelected(int position) {
          ... anything you may need to do to handle pager state ...
          adapter.notifyDataSetChanged(); //this line will force all pages to be loaded fresh when changing between fragments
     }
}

This should have the same effect as setting the OffscreenPageLimit to 0. However, this functionality is sort of against what the ViewPager is designed to provide. If you are trying to implement a ViewPager in this way, it may be worth reevaluating your layout to be sure that a ViewPager is really what you want to use.

Dave
  • 1,190
  • 14
  • 32
13

UPDATE: There is a better way, Please have a look here: Update ViewPager dynamically?


Removing content of this answer because it was a really bad way to access Fragments inside ViewPager, please see the above link for better approach.

Community
  • 1
  • 1
M-WaJeEh
  • 16,562
  • 9
  • 59
  • 93
  • yep that will do the trick. i wonder about the `setOffscreenPageLimit` method though and why swiping two tabs away and then back to the original, only then my onCreateView is called again. – BlastFire Feb 08 '13 at 13:56
  • 2
    Default value for `setOffscreenPageLimit()` is 1. That means 1 on each side of your current tab will be initialized/cached. When you go away 2 tabs then the tab in question is un-cached/destroyed. So coming back will initiate it again and everything will work fine this time. – M-WaJeEh Feb 08 '13 at 14:40
  • App crashes everytime i scroll through it and shows the error `cast exception : package.fragment can not be casted to package.fragment$refreshlistener` – silverFoxA May 03 '15 at 09:33
  • Hello it gives java.lang.ClassCastException: what to do...urgent – Harry Sharma Oct 13 '15 at 07:01
  • @Virus Use the mechanism mentioned here http://stackoverflow.com/questions/10849552/update-viewpager-dynamically/17855730#17855730 – M-WaJeEh Oct 13 '15 at 12:30
  • @Hardeep see my comment above – M-WaJeEh Oct 13 '15 at 12:30
2

It's because you can specify the number of fragment your viewpager will "keep in RAM" (setOffScreenPageLimit () :I think the default is 1). So your second fragment is not reloaded. And when you go to a tab 3 or 4, then your 2 firsts fragments are deleted, then recreated when you come back.

To refresh your fragment, there is many way to do it: you could implement a listener interface of your own in it to tell it when to refresh, or simply call a method that you would implement to update your contents.

psykhi
  • 2,921
  • 2
  • 14
  • 22
2

first override in the fragment method

@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
    super.setUserVisibleHint(isVisibleToUser);
    if(isVisibleToUser){
        actionView();//call the method to be refreshed
    }
    else{
        //no
    }

}
Issac Balaji
  • 1,405
  • 1
  • 13
  • 25
1

In my experience, ViewPagers keep:

  • Your current tab
  • & 1 tab either side in memory

So when you switch between 1 and 2, nothing is happening under the hood - it's like they are simply being hidden / shown.

But when you navigate to tab 4, tabs 1 & 2 are destroyed (onDestroy() called), so when you navigate back to either of them, they are being re-created fresh (onCreate() called).

As psykhi suggests, you could setOffScreenPageLimit() to 0, so that each fragment is created every time you navigate to it.

If you were interested in keeping the other pages in memory for performance purposes, as they were designed with this is mind, you could use a messaging/event publishing system to send a message from tab 1 to tab 2 telling it to update when you submit the form on tab 1.

Community
  • 1
  • 1
Cillian Myles
  • 626
  • 7
  • 14
  • Its crazy it behaves like this.. for beginners one would think android studio is wierd – DragonFire Jan 21 '19 at 10:34
  • i was thinking that copying and pasting fragment structure and modifying is causing this problem (because it does in xml files where you refactor id in one place it changes everywhere).. so i thought some wierd linkages could be there but this is totally different... – DragonFire Jan 21 '19 at 10:35
0

Ok may be a late reply,might help others in future, so recently I faced same issue while fetching data from db into tabs it used to display only once I click on 3rd tab.. I tried above mentioned solution but nothing really worked.. fianlly i came across Otto This library allows you to communicate within your app..

Just use this library to yourAdapter.notifyDataSetChanged() wherever you fetching your data from db..

This video helped me alot https://www.youtube.com/watch?v=lVqBmGK3VuA

fasal shah
  • 116
  • 1
  • 1
  • 6