Code Monkey home page Code Monkey logo

beppimenozzi / arcpageindicator Goto Github PK

View Code? Open in Web Editor NEW
73.0 4.0 12.0 4.86 MB

Android Page Indicator for ViewPager with original animations. It uses an ellipse to dispose indication spots, and can draw a hand, like in old elevators.

Java 100.00%
viewpager viewpager-indicator android android-ui android-library indicator material-design material-ui animations viewpagerindicator viewpagers animation ellipse arc graphics clock needle indicators

arcpageindicator's Introduction

ArcPageIndicator

Bored of the usual small points or stressed by the space occupied by a tab bar?
Try this elevator-like elegant and original page indicator! A fully customizable super-easy Page Indicator, with stunning animations and very original and discreet graphics, for Android. Needs a very small screen, perfect when many pages need to be shown and reached in a small time.


  • Out-of-the-box working indicator
  • Fully customizable and styleable
  • Can be programmatically controlled
  • Includes rather complex ellipses calculations :-)


An old elevator that inspired this project.

Setup (Gradle)

In your project's build.gradle file:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
        ...
    }
}

In your Application's or Module's build.gradle file:

dependencies {
    ...
    compile 'com.github.BeppiMenozzi:ArcPageIndicator:1.0.2'
    ...
}

Minimal usage

Layout for bottom 180° ellipse:

...
xmlns:app="http://schemas.android.com/apk/res-auto"
...
<it.beppi.arcpageindicator.ArcPageIndicator
    android:id="@+id/arc_pi"
    android:layout_width="400dp"
    android:layout_height="120dp"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    app:apiArcOrientation="toUp"
    app:apiViewPager="@id/view_pager"
    />

Layout for upper-left 90° ellipse:

...
xmlns:app="http://schemas.android.com/apk/res-auto"
...
<it.beppi.arcpageindicator.ArcPageIndicator
    android:id="@+id/arc_pi"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    app:apiArcOrientation="toDownRight"
    app:apiViewPager="@id/view_pager"
    />

Attributes description

List of attributes with description:

General
apiViewPagerThe ViewPager associated to the Indicator
Arc appearance
apiArcOrientationOrientation of the "belly" of the arc. This parameter also affects if the arc will be 90° (corner arc) or 180° (edge arc)
Spot appearance
apiSpotsColorColor of the spots
apiSelectedSpotColorColor of the selected spot
apiSpotsRadiusSize of the spots
apiSpotsShapeShape of the spots: Circle, RoundedSquare or Square
Spots distribution and movement
apiIntervalMeasureHow spots are distributed on the circumference: constant angle or constant arc length. With constant angle, the spots will not be distributed evenly, because of ellipse's eccentricity. Normally constant arc length is used: being a non-finite math problem, here an approximation function is used, as explained later on.
apiInvertDirectionIf spots will be selected in inverted direction
apiAnimationTypeSee below to detailed explanation of animation types
Hand appearance
apiHandEnabledIf hand is drawn
apiHandColorHand's color
apiHandWidthHand's width
apiHandRelativeLengthHand's relative length starting from center to edges (1 = full length)

Animation types

List of animation types:

NametoBottomRighttoUpNotes
Color
Color cross-fade
Slide
Simple movement
Pinch
Simple movement
with size reduction
Bump
Simple movement
with size growth.
Might need additional padding
Rotate
Inverted movement of all spots
Rotate Pinch
Inverted movement of all spots
with size reduction
Cover
Spots are filled from inside
Fill
Spots are empty and filled from inside
Surround
Simple movement of a circle
surrounding smaller spots
Necklace
Inverted movement of all spots,
with center spot biggest
and lateral spots smaller
Necklace 2
Inverted movement of all spots,
with selected spot biggest
and farthest spot smallest
Example of hand
Example of rounded squared spots

New in 1.0.2

  • Fixed a crash when the ViewPager was not found
  • Added setViewPager(), to attach the Indicator to dynamically created viewpagers, by referring the Object and not the id reference number

Some maths

This question I made helped me solve the ellipse's problem. Indeed, finding arcs of constant length on a known ellipse is a problem with a non-finite solution, that needs integrals to be calculated. There were at least 5 approaches to solve this problem with acceptable performance:

  • find the points recursively, by iteratively reducing the error until it's close enough to zero. Pros: easy to do. Cons: adds a indetermined (although very small) time to the drawing process
  • create a big table of sampled data and storing them to provide a database of pre-calculated solutions. Pros: fastest. Cons: can't work for any number of elements
  • distribute the points on the radius and project them on the circumference. Pros: very fast. Cons: error still pretty large
  • use an approximated function. Pros: fast and good enough. Cons: never perfect
  • calculate the elliptic integrals. Pros: perfect. Cons: very very very heavy on performance

I chose to find a good approximated function and that is what you can find inside the code, it's fast enough and the error is near to invisibility. In case you need more performance, you can remove the e6 part of the formula and have a slightly bigger error.

The formula used is the one of the referenced question, and thanks very much to its author, Ng Chung Tak that is both the author of the answer, and the author of the formula itself.

Author

License

The MIT License (MIT)

Copyright (c) 2016 Beppi Menozzi

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.

arcpageindicator's People

Contributors

beppimenozzi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  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.