Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know many applications using fragments in ViewPager. I need it in my application too. I have no found any guide how I can to do it exclude this. And here is my code:

public class MainActivity extends FragmentActivity {

    Vector<Fragment> fragments;
    ViewPager viewPager;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        viewPager = (ViewPager) findViewById(R.id.pager);

        fragments = new Vector<Fragment>();
        fragments.add(Fragment.instantiate(this, Fragment1.class.getName()));
        fragments.add(Fragment.instantiate(this, Fragment2.class.getName()));

        viewPager.setOffscreenPageLimit(fragments.size());
        PagerAdapter pagerAdapter = new PagerAdapter(super.getSupportFragmentManager(), fragments);

        viewPager.setAdapter(pagerAdapter);

        viewPager.setCurrentItem(0);
    }

    class PagerAdapter extends FragmentPagerAdapter {

        private List<Fragment> fragments;

        public PagerAdapter(FragmentManager fm, List<Fragment> fragments) {
            super(fm);
            this.fragments = fragments;
        }

        @Override
        public Fragment getItem(int position) {
            return this.fragments.get(position);
        }

        @Override
        public int getCount() {
            return this.fragments.size();
        }

    }

}

But this code doesn't working well. Sometimes I get error in my Fragment1 about getActivity() return null. I read many posts from this site and other about this error and now I know that is bad way - use Vector for storing fragments. But I still don't know, how to do ViewPager with fragments properly. Please, help.

share|improve this question
1  
Since ~95% of the sample applications demonstrating ViewPager do so by demonstrating using fragment in a ViewPager, what specifically is confusing you? – CommonsWare Dec 26 '12 at 15:14
You should probably rename your class, there is already a PagerAdapter class in Android... – Matthieu Dec 26 '12 at 15:21
1  
And there are a lot of tutorials around on Fragments in ViewPager: tamsler.blogspot.com/2011/10/…, thepseudocoder.wordpress.com/2011/10/05/…, alchemiasoft.wordpress.com/2012/02/15/… ... – Matthieu Dec 26 '12 at 15:25
@CommonsWare, I confuse with proper managing fragments in memory. Sometimes it detached, MainActivity recreated and I get null from getActivity() method. So, I need make it another way, but I don't know how. – BArtWell Dec 26 '12 at 15:32
1  
@BArtWell Good luck... about your questions with detaching and so on, that's just the way it goes so if you have ASyncTaks or things like that, you'll just have to check if the Fragment is still attached, whether it has a view or things like that, never assume things... – Matthieu Dec 26 '12 at 23:17
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.