<com.eftimoff.androipathview.PathView xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/path_view"
android:layout_width="150dp"
android:layout_height="150dp"
app:pathColor="@color/colorAccent"
app:pathWidth="5dp"
app:svg="@raw/logo" />
其中pathWidth要用dp。
3. 在代码中获取控件,并进行配置。代码如下:
mPathView.getPathAnimator().delay(100).duration(5000).listenerEnd(new PathView.AnimatorBuilder.ListenerEnd() {
@Override
public void onAnimationEnd() {
jump();
}
}).start();