Giter Site home page Giter Site logo

medal's Introduction

Medal

license API Build Status Android Weekly

πŸ…An easy way to implement medal effect for Android.

gif0 gif1

Download

Download Jitpack

Gradle

Add below codes to your root build.gradle file (not your module build.gradle file).

allprojects {
    repositories {
        jcenter()
    }
}

And add a dependency code to your module's build.gradle file.

dependencies {
    implementation "com.github.skydoves:medal:1.0.4"
}

Usage

Add following XML namespace inside your XML layout file.

xmlns:app="http://schemas.android.com/apk/res-auto"

MedalLayout in layout

<com.skydoves.medal.MedalLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    app:direction="right"
    app:turn="1"
    app:speed="1500">

    <ImageView
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:src="@drawable/medal2"
        android:layout_centerInParent="true"
        android:scaleType="fitXY"/>
  
</com.skydoves.medal.MedalLayout>

create using builder

This is how to create MedalAnimation's instance using MedalAnimation.Builder class.

MedalAnimation medalAnimation = new MedalAnimation.Builder()
     .setDirection(MedalDirection.RIGHT)
     .setDegreeX(360)
     .setDegreeZ(360)
     .setSpeed(4200)
     .setTurn(4)
     .setLoop(10)
     .build();

create using kotlin dsl

This is how to create MedalAnimation's instance using kotlin dsl.

val medalAnimation = medalAnimation {
     direction = MedalDirection.LEFT
     speed = 4200
     turn = 4
}

start animation

There are a few ways to start the medal animation.

medalAnimation.startAnimation(targetView);
medalLayout.startAnimation(targetView);

or we can give a medal effect using view's startAnimation method.

ImageView imageView = findViewById(R.id.badge);
imageView.startAnimation(medalAnimation);

MedalLayout Attributes

Parameter Format Default Description
autoStart Boolean true sets medal animation starts automatically or not.
type children or parent MedalTarget.CHILDREN the target of medal animation to the ViewGroup.
direction right or left MedalDirection.RIGHT direction of medal animation.
turn Integer 1 number of turns per a loop.
loop Integer infinite(0) loop of the medal animation. The 0 value loops forever.
speed Integer 2300 Speed of the medal animation per loop.
degreeX Integer 0 rotation degree of axis x.
degreeZ Integer 0 rotation degree of axis Z.

References

License

The MIT License (MIT)

Copyright (c) 2017 skydoves

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.

medal's People

Contributors

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