I am trying to implement viewpagerindicator within my app.

I am using viewpagerindicator lib. and my code is bellow link.

http://pastebin.com/TRUazPmb

I am getting an error,

11-15 13:07:35.145: E/AndroidRuntime(431): Caused by: java.lang.IllegalStateException: ViewPager adapter must implement TitleProvider to be used with TitlePageIndicator.

at ViewPageActivitys line indicator.setViewPager(mPager);

Anybody help me how to solve it?

Thank you

link|improve this question

64% accept rate
feedback

1 Answer

up vote 2 down vote accepted
public class ViewPageFragmentAdapter extends FragmentPagerAdapter {

replace this line with

public class ViewPageFragmentAdapter extends FragmentPagerAdapter implements TitleProvider{

You have to implement TitleProvider for your pager adapter if you are using titlePageindicator. you might need to add some functions after implementing this...

to call different children..

@Override
        public Fragment getItem(int arg0) {
            if (arg0 == 0) {
                return new Fragment1();
            } else if (arg0 == 1) {
                return new Fragment2();
            } else if (arg0 == 2){
                return new Fragment3();
            } else {
                return new Fragment0();
            }
        }
link|improve this answer
Thank u, its working. One more thing i want to know body part is a text so that i can easily gave that. i want to put different activity for different titles, how can i do that? – Jyosna Nov 15 '11 at 8:05
i want to put different different views for different viewpage, is it possible? – Jyosna Nov 15 '11 at 8:49
yes possible, you need to check for child index requested, if it matches with that of yours, you supply the fragment that you think is apt at that index. – Yashwanth Kumar Nov 15 '11 at 8:52
can u tell me where i will check the child index? – Jyosna Nov 15 '11 at 9:23
in your pager adapter, you have getItem(int position) , position is the child index. – Yashwanth Kumar Nov 15 '11 at 9:31
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.