PagerSlidingTabStrip icon indicating copy to clipboard operation
PagerSlidingTabStrip copied to clipboard

An interactive indicator to navigate between the different pages of a ViewPager

Results 101 PagerSlidingTabStrip issues
Sort by recently updated
recently updated
newest added

This PR fixes the issue that tab strip fail to scroll to target child when first launch,typically when the target child is out of screen.

The indicator couldn't be seen when set TabBackground color. ``` tabs.setIndicatorColor(Color.parseColor("#ffffff")); tabs.setSelectedTextColor(Color.parseColor("#ffffff")); tabs.setTabBackground(R.color.title_bar_background_color); ```

I was making dynamic tabs, ie tab size and names varies each time, it is working fine for first couple of time after that scrollToChild() - FATAL EXCEPTION: main PID:...

there was around 300 errors when importing to eclipse, it went down to 37 after adding android-support-v4.jar into the libraries external jars. Any help would be appreciated, just a noob...

Hi, Is there anyway to add badge(shows users counts) beside page title.? ![687474703a2f2f7777772e6a65666667696c66656c742e636f6d2f766965776261646765722f76622d32612e706e67](https://cloud.githubusercontent.com/assets/3022901/6229730/b0c563c2-b6df-11e4-9314-889d5898786e.png) Thanks in Advance. Sasi

I have a requirement , where the icons for the tabs are being downloaded from the internet. Since this process is happening asynchronously, I need to be able to set...

not pagerSlidingTabStrip.setIndicatorColor()...etc like this: pagerSlidingTabStrip.setIndicatorColorResource(android.R.color.white); pagerSlidingTabStrip.setIndicatorHeight(DensityUtil.dip2px(getActivity(),2)); pagerSlidingTabStrip.setUnderlineColorResource(android.R.color.transparent); pagerSlidingTabStrip.setTextColorResource(android.R.color.white); pagerSlidingTabStrip.setDividerColorResource(android.R.color.transparent); ... pagerSlidingTabStrip.setAllCaps(false);//setting text-transform

I have a viewpager which holds a three fragments. One of the fragment has GridView, When i swipe left or right on the gridview the viewpager is not scrolling, when...