I have implemented a PagerTabstrip successfully with my viewpager as given below.
<com.antonyt.infiniteviewpager.InfiniteViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<android.support.v4.view.PagerTabStrip
android:id="@+id/my_PageTabStrip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top" />
</com.antonyt.infiniteviewpager.InfiniteViewPager>
My tabs are showing in default animation, how can I change the animation of pagerTabstrip?
I think one solution is edit the pagerTitlestrip which extended by pagerTabstrip, Any one have idea about that??