All Projects β†’ skydoves β†’ Medal

skydoves / Medal

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

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Medal

ShoppingCartAnimation
Shopping bag animation with zoom and Bezier curves
Stars: ✭ 29 (-74.11%)
Mutual labels:  android-animation
Motionlayoutexamples
πŸ†’ Motion layout animation examples
Stars: ✭ 543 (+384.82%)
Mutual labels:  android-animation
Androidsnowfall
Snowfall App Demo
Stars: ✭ 8 (-92.86%)
Mutual labels:  android-animation
koleton
The easiest library to show skeleton screens in an Android app.
Stars: ✭ 84 (-25%)
Mutual labels:  android-animation
Mediumclap Android
πŸ‘ The Medium's Clapping Effect developed in Android
Stars: ✭ 485 (+333.04%)
Mutual labels:  android-animation
Audio Visualizer Android
🎡 [Android Library] A light-weight and easy-to-use Audio Visualizer for Android.
Stars: ✭ 581 (+418.75%)
Mutual labels:  android-animation
android-gallery
Shared element transition example with RecyclerView and ViewPager.
Stars: ✭ 38 (-66.07%)
Mutual labels:  android-animation
Fabfilter
Android app to showcase complex UI/Animations with and without MotionLayout
Stars: ✭ 1,333 (+1090.18%)
Mutual labels:  android-animation
Rxanimations
Repository for android animations Rx wrapper
Stars: ✭ 488 (+335.71%)
Mutual labels:  android-animation
Ubercaranimation
A demo app showing movement of car on map like in Uber.
Stars: ✭ 643 (+474.11%)
Mutual labels:  android-animation
Tickview
δΈ€δΈͺη²Ύθ‡΄εΈ¦ζ„Ÿηš„ζ‰“ι’©ε°εŠ¨η”»
Stars: ✭ 284 (+153.57%)
Mutual labels:  android-animation
Ticker
An Android text view with scrolling text change animation
Stars: ✭ 4,194 (+3644.64%)
Mutual labels:  android-animation
Elasticviews
✨ An easy way to implement an elastic touch effect for Android.
Stars: ✭ 588 (+425%)
Mutual labels:  android-animation
navigation-with-animated-transitions-using-jetpack-compose
DEPRECATED - Demonstates how to create animated transitions to and from screens using Jetpack Compose.
Stars: ✭ 31 (-72.32%)
Mutual labels:  android-animation
Confetti
An Android particle system library for displaying confetti!
Stars: ✭ 1,194 (+966.07%)
Mutual labels:  android-animation
RandomNumberAnimation
Easily create random number change animation to a TextView
Stars: ✭ 27 (-75.89%)
Mutual labels:  android-animation
Animation Tutorials
πŸ­πŸš€πŸ’— Tutorials about animations with Animators, Animated Vector Drawables, Shared Transitions, and more
Stars: ✭ 557 (+397.32%)
Mutual labels:  android-animation
Rx2animations
Repository for android animations Rx2 wrapper
Stars: ✭ 95 (-15.18%)
Mutual labels:  android-animation
Android Ripple Pulse Animation
A cool ripple and pulse background animation for android
Stars: ✭ 88 (-21.43%)
Mutual labels:  android-animation
Animationsplayground
This repo is an attempt to implement a complex animation
Stars: ✭ 630 (+462.5%)
Mutual labels:  android-animation

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].