0

I tried to implement PagerSlidingTabStrip

http://www.androidviews.net/2013/04/pager-sliding-tabstrip/

in Fragment in place FragmentActivity, but unsuccessful. Does anyone have experience with this? Thanks.

BillyBigPotatoes
  • 1,286
  • 11
  • 23
  • [Usage](https://github.com/astuetz/PagerSlidingTabStrip#usage) – adneal Mar 03 '14 at 21:56
  • Have you tried using the view-pager-indicator from https://github.com/JakeWharton/Android-ViewPagerIndicator ? Its a very good project if you want to have a custom indicators in the bottom. – mike20132013 Mar 03 '14 at 22:41
  • can you show us some code you have written so we have something to work with? – sudocoder Mar 12 '14 at 04:35

1 Answers1

1

Why don't you try my other post and see if that matches with your question :

How to properly use fragments with ViewPager?

After setting the view pager, only thing you need to do is:

PageIndicatorLib mIndicator = (PageIndicatorLib) findViewById(R.id.simplecircle);
        mIndicator.setViewPager(myPager);

Here, assume that the PagerIndicatorLib is the library project you will be using for the indicator stuff. Like I mentioned in the comment.

Community
  • 1
  • 1
mike20132013
  • 5,257
  • 3
  • 28
  • 41