Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Android Medal animation library by skydoves.

License

NotificationsYou must be signed in to change notification settings

naseemakhtar994/Medal

 
 

Repository files navigation

Medal can be used to add medal effect to your Android views.

gifgif2

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.MedalLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_weight="1"app:direction="right"app:turn="1"app:speed="1500">    <ImageViewandroid:layout_width="80dp"android:layout_height="80dp"android:src="@drawable/medal2"android:layout_centerInParent="true"android:scaleType="fitXY"/>  </com.skydoves.medal.MedalLayout>

MedalLayout Attributes

ParameterFormatDefaultDescription
typechildren(0) or parent(1)children(0)target of animation
directionright(0) or left(1)right(0)direction of animation
turnInteger1counts of turns per a loop (if turn value is 3, turn 3 per loop)
loopIntegerinfinite(0)loop of animation
speedInteger2300duration per loop
degreeXInteger0turning degree of axis x
degreeZInteger0turning degree of axis Z

License

Copyright 2017 skydovesLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.

About

Android Medal animation library by skydoves.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java100.0%

[8]ページ先頭

©2009-2025 Movatter.jp