Git Product home page Git Product logo

android-indefinite-pager-indicator's Introduction

Android Indefinite Pager Indicator

A lightweight, plug-and-play indefinite pager indicator for RecyclerViews & ViewPagers.

GIF Preview

Usage

Download

To use the IndefinitePagerIndicator, simply add the gradle dependency to your module's build.gradle file:

compile 'com.ryanjeffreybrooks:indefinitepagerindicator:1.0.10'

Min SDK supported is version 16 - Jelly Bean.

Getting Started

Attaching the indicator to a RecyclerView or Viewpager takes only one line of code. After this, the Indefinite Pager Indicator will handle everything else.

RecyclerView

  1. Add the IndefinitePagerIndicator view to your XML file
<com.rbrooks.indefinitepagerindicator.IndefinitePagerIndicator
        android:id="@+id/recyclerview_pager_indicator"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ... 
        />
  1. Find the view in your activity, fragment, etc.
findViewById(R.id.recyclerview_pager_indicator);
  1. Attach the RecyclerView to your IndefinitePagerIndicator
indefinitePagerIndicator.attachToRecyclerView(recyclerView);

That's it! The IndefinitePagerIndicator will handle updating as your RecyclerView does.

ViewPager

  1. Add the IndefinitePagerIndicator view to your XML file
<com.rbrooks.indefinitepagerindicator.IndefinitePagerIndicator
        android:id="@+id/viewpager_pager_indicator"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ... 
        />
  1. Find the view in your activity, fragment, etc.
findViewById(R.id.viewpager_pager_indicator);
  1. Attach the ViewPager to your IndefinitePagerIndicator
indefinitePagerIndicator.attachToViewPager(viewPager);

That's it! The IndefinitePagerIndicator will handle updating as your ViewPager does.

The position of the ViewPager can also be changed programmatically with viewPager.setCurrentItem(position) and the IndefinitePagerIndicator will update successfully.

Sample

A sample application is included in the repository. To view the sample:

  1. Clone the repository locally
git clone [email protected]:rbro112/Android-Indefinite-Pager-Indicator.git
  1. Build and run the sample module.

Alt text

Customizing

To customize the IndefinitePagerIndicator, modify any of the following attributes in the XML code for your IndefinitePagerIndicator view.

Attribute Explanation Default Value Example Code Result
dotRadius The radius of a dot indicator in DP. 4dp app:dotRadius="8dp" Alt text
selectedDotRadius The radius of the currently selected dot indicator in DP. 5.5dp app:selectedDotRadius="6dp" Alt text
dotColor The color of a dot indicator. #e8e8e8 app:dotColor="#ff0000" Alt text
selectedDotColor The color of the currently selected dot indicator. #ffffff app:selectedDotColor="#ff0000" Alt text
dotSeparation The distance from edge to edge of each dot in DP. 10dp app:dotSeparation="16dp" Alt text
dotCount The number of large visible dot indicators at any time. 5 app:dotCount="3" Alt text
fadingDotCount The number of dot indicators that fade towards the edge. 1 app:fadingDotCount="2" Alt text
supportRTL Adds support for RTL ViewPagers (Thanks @wching!) false app:supportRTL="true" If current layout mode is RTL, indicator will move from right to left with scrolling.

TODO:

Actively working on these. If you would like to help, submit a PR!

  • "Instagram" style -- Selected dot starts at the left of the view rather than starting in the center.

  • Support for padding.

Notes

Follow me on Twitter: @rbro112

Let me know what you think: [email protected]

Contributions welcome!

License

MIT License

Copyright (c) 2017 Ryan Brooks

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

android-indefinite-pager-indicator's People

Contributors

fengmlo avatar rbro112 avatar wching avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.