Medal
Medal can be used to add medal effect to your Android views.
Download
build.gradle
repositories {
mavenCentral() // or jcenter() works as well
}
dependencies {
compile 'com.github.skydoves:medal:1.0.1'
}
or Maven
<dependency>
<groupId>com.github.skydoves</groupId>
<artifactId>medal</artifactId>
<version>1.0.1</version> </dependency>
Usage
Medal Animation
You can give all of views or GroupViews medal effect.
Create Medal Animation Instance
You can make instance using Builder and customize using set() methods.
MedalAnimation medalAnimation = new MedalAnimation.Builder()
.setDirection(MedalAnimation.LEFT)
.setDegreeX(360)
.setDegreeZ(360)
.setSpeed(4200)
.setTurn(4)
.setLoop(10)
.build();
Apply Animation Example
medalAnimation.startAnimation(findViewById(R.id.badge));
or
ImageView imageView = (ImageView)findViewById(R.id.badge);
imageView.startAnimation(medalAnimation);
MedalLayout
You can use like using normal layouts and you can give all of Views or GroupViews medal effect very simply.
Add XML Namespace
First add below XML Namespace inside your XML layout file.
xmlns:app="http://schemas.android.com/apk/res-auto"
<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>
MedalLayout Attributes
Parameter | Format | Default | Description |
---|---|---|---|
type | children(0) or parent(1) | children(0) | target of animation |
direction | right(0) or left(1) | right(0) | direction of animation |
turn | Integer | 1 | counts of turns per a loop (if turn value is 3, turn 3 per loop) |
loop | Integer | infinite(0) | loop of animation |
speed | Integer | 2300 | duration per loop |
degreeX | Integer | 0 | turning degree of axis x |
degreeZ | Integer | 0 | turning degree of axis Z |
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.