Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to customise the CirclePageIndicator?

I am using ViewPager and PagerAdapter to get a slideshow of XMLs in android app. I am using CirclePageIndicator to number the page. How can I customise the color of the circle corresponding to current page ?

like image 826
user3293494 Avatar asked Apr 30 '14 19:04

user3293494


2 Answers

On your CirclePageIndicator object call setPageColor(Color.RED) to set the default fill colour of the circle to red. Call setFillColor(Color.BLACK) to set the fill colour of the selected circle to black. Call setStrokeColor(Color.WHITE) to set the stroke or the circle's border colour to white.

You can pick whatever colour you want to customize the indicator, these colour values I provided are just as an example.

You can also customize these indicators using XML.

Example from Android-ViewPagerIndicator's GitHub repo:

<com.viewpagerindicator.CirclePageIndicator
    android:id="@+id/indicator"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    app:fillColor="#FF888888"
    app:pageColor="#88FF0000"
    app:strokeColor="#FF000000" />
like image 192
Hassaan Avatar answered Nov 02 '22 02:11

Hassaan


If you want to use custom images drawable instead of colors and stroke you can use this library:

https://github.com/augustopicciani/DrawablePageIndicator

like image 34
Augusto Picciani Avatar answered Nov 02 '22 01:11

Augusto Picciani