I am using PagerTitleStrip for swiping Fragment, I need to make a dot for selected item or Highlighted title. My XML Code :
<android.support.v4.view.PagerTitleStrip
android:id="@+id/pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#fff"
android:paddingBottom="6dp"
android:paddingTop="6dp"
android:textColor="@color/blueColorSwipeText" />
I also need to change the highlighted title color. Please help me out. Thanks Suggestions appreciated.
Use the
textColor
attribute; Create a new style in res/values/styles.xml:You will get a green title and a red indicator.
You may want to see ViewPagerIndicator
To change the indicator you have to change onDraw(Canvas canvas) method.
Here is the source code PagerTabStrip.java.
You have to change this line:
Test if you get a dot when replacing with:
For drawing custom views check out the Android documentation.
Custom Drawing