Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.tarek360:richpath:0.1.1'
}
dependencies {
implementation("com.github.tarek360:richpath:0.1.1")
}
<dependency>
<groupId>com.github.tarek360</groupId>
<artifactId>richpath</artifactId>
<version>0.1.1</version>
</dependency>
libraryDependencies += "com.github.tarek360" % "richpath" % "0.1.1"
:dependencies [[com.github.tarek360/richpath "0.1.1"]]
💪 Rich Android Path. 🤡 Draw as you want. 🎉 Animate much as you can.
fillColor
, strokeColor
, strokeAlpha
, fillAlpha
, size
, width
, height
, scale
, scaleX
, scaleY
, rotation
, translationX
, translationY
, trimPathStart
, trimPathEnd
, trimPathOffset
.
RichPathAnimator.animate(richPath)
.pathData(pathData1, pathData2, ...)
.start();
<com.richpath.RichPathView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:vector="@drawable/vector_drawable" />
// by path name
RichPath richPath = richPathView.findRichPathByName("path_name");
// or if it contains one path
RichPath richPath = richPathView.findFirstRichPath();
// or by index
RichPath richPath = richPathView.findRichPathByIndex(0);
RichPathAnimator.animate(richPath)
.trimPathEnd(value1, value2, ...)
.fillColor(value1, value2, ...)
.start();
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="32.0"
android:viewportWidth="32.0">
<group
android:pivotX="16"
android:pivotY="6.25">
<path
android:name="top"
android:fillColor="#FFF7F7F7"
android:pathData="M22,19.8v-5c0-3.1-1.6-5.6-4.5-6.3V7.8c0-0.8-0.7-1.5-1.5-1.5s-1.5,0.7-1.5,1.5v0.7c-2.9,0.7-4.5,3.2-4.5,6.3v5l-2,2v1h16v-1L22,19.8z" />
<path
android:name="bottom"
android:fillColor="#FFF7F7F7"
android:pathData="M16,25.8c1.1,0,2-0.9,2-2h-4C14,24.9,14.9,25.8,16,25.8z" />
</group>
</vector>
<com.richpath.RichPathView
android:id="@+id/ic_notifications"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:vector="@drawable/ic_notifications" />
RichPath top = notificationsRichPathView.findRichPathByName("top");
RichPath bottom = notificationsRichPathView.findRichPathByName("bottom");
RichPathAnimator.animate(top)
.interpolator(new DecelerateInterpolator())
.rotation(0, 20, -20, 10, -10, 5, -5, 2, -2, 0)
.duration(4000)
.andAnimate(bottom)
.interpolator(new DecelerateInterpolator())
.rotation(0, 10, -10, 5, -5, 2, -2, 0)
.startDelay(50)
.duration(4000)
.start();
Add the following dependency to your module build.gradle
file:
dependencies {
...
implementation 'com.github.tarek360.RichPath:animator:0.1.1'
}
Add this to your root build.gradle
file (not your module build.gradle
file) :
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
RichPathAnimator
.animate(richPath1, richPath2)
.rotation(value1, value2, ...)
//Animate the same path or another with different animated attributes.
.andAnimate(richPath3)
.scale(value1, value2, ...)
//Animate after the end of the last animation.
.thenAnimate(richPath4)
.strokeColor(value1, value2, ...)
// start your animation 🎉
.start();
richPathView.setOnPathClickListener(new RichPath.OnPathClickListener() {
@Override
public void onClick(RichPath richPath) {
if (richPath.getName().equals("path_name")) {
//TODO do an action when a specific path is clicked.
}
}
});
If you have any suggestion please open an issue for it.
Copyright 2017 Tarek360
Licensed 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.0
Unless required by applicable law or agreed to in writing, software distributed 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 and limitations under the License.