PageIndicatorView icon indicating copy to clipboard operation
PageIndicatorView copied to clipboard

An page indicator for Android ViewPager

Results 55 PageIndicatorView issues
Sort by recently updated
recently updated
newest added

`app:piv_rtl_mode="auto"` not working and need to do manually `indicatorView.setRotation(180f);` for Rtl layouts

It looks like the example is bad in the readme.

remove jcenter info

JCenter is shutting down: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ So, please consider publishing to Jitpack.io or Maven Central instead. The deadline is May 1st.

Please add support for `ViewPager2`. It doesn't work when I pass the id of a `ViewPager2` to `piv_viewPager`.

An initial effort at adding support for a rectangular indicator rather than just circular. Some more work could be done to improve the code and potentially allow the ability to...

Check this: The results: ![image](https://user-images.githubusercontent.com/5357526/49940922-bdcd8d00-fee9-11e8-978b-667d86ca54e3.png) The top of each circle is cut. Tested on Pixel 2 with Android P, v 1.0.3 of the library. Any workaround?

Support ViewPager2 and prepare for support for other paging views using an adapter pattern.

``` var thismidPos = 0 var scrollX = 0 recyclerView.addOnScrollListener(object: RecyclerView.OnScrollListener() { override fun onScrolled(recyclerView: RecyclerView?, dx: Int, dy: Int) { super.onScrolled(recyclerView, dx, dy) scrollX += dx recyclerView?.getChildAt(0)?.width?.let { val...

Stable version of [ViewPager2](https://developer.android.com/jetpack/androidx/releases/viewpager2) may be availbale soon. It would be a great idea to add support for it in the library.