List of usage examples for android.graphics.drawable Animatable interface-usage
From source file org.adw.library.widgets.discreteseekbar.internal.drawable.AlmostRippleDrawable.java
public class AlmostRippleDrawable extends StateDrawable implements Animatable { private static final long FRAME_DURATION = 1000 / 60; private static final int ANIMATION_DURATION = 250; private static final float INACTIVE_SCALE = 0f; private static final float ACTIVE_SCALE = 1f;
From source file org.adw.library.widgets.discreteseekbar.internal.drawable.MarkerDrawable.java
/**
* Implementation of {@link StateDrawable} to draw a morphing marker symbol.
* <p>
* It's basically an implementation of an {@link android.graphics.drawable.Animatable} Drawable with the following details:
* </p>
* <ul>
From source file am.widget.MaterialProgressImageView.java
/**
* ImageView
* <p>
* android.support.v4.widget.CircleImageView
* <p>
* Created by Alex on 2016/12/27.
From source file com.tr4android.support.extension.drawable.IndeterminateProgressDrawable.java
public class IndeterminateProgressDrawable extends Drawable implements Animatable { private static final String TAG = "Indeterminate Progress"; // Interpolator used for path start private static final Interpolator PATH_START_INTERPOLATOR; static {
From source file io.github.sin3hz.wifispinnerview.WifiSpinnerDrawable.java
public class WifiSpinnerDrawable extends Drawable implements Animatable { private static final Interpolator ANGLE_ANIMATOR_INTERPOLATOR = new LinearInterpolator(); private static final Interpolator SWEEP_ANIMATOR_INTERPOLATOR = new SweepInterpolator(); private static final int SWEEP_ANIMATOR_DELAY = 200;
From source file com.hippo.vectorold.drawable.AnimatedVectorDrawable.java
/**
* This class uses {@link android.animation.ObjectAnimator} and
* {@link android.animation.AnimatorSet} to animate the properties of a
* {@link android.graphics.drawable.VectorDrawable} to create an animated drawable.
* <p>
* AnimatedVectorDrawable are normally defined as 3 separate XML files.
From source file com.wnafee.vector.compat.AnimatedVectorDrawable.java
public class AnimatedVectorDrawable extends DrawableCompat implements Animatable, Tintable { private static final String LOGTAG = AnimatedVectorDrawable.class.getSimpleName(); private static final String ANIMATED_VECTOR = "animated-vector"; private static final String TARGET = "target";
From source file im.ene.lab.design.widget.vector.AnimatedVectorDrawable.java
public class AnimatedVectorDrawable extends DrawableCompat implements Animatable, Tintable { private static final String LOGTAG = AnimatedVectorDrawable.class.getSimpleName(); private static final String ANIMATED_VECTOR = "animated-vector"; private static final String TARGET = "target";
From source file cn.jiguang.imui.messages.MaterialProgressDrawable.java
/**
* Fancy progress indicator for Material theme.
* It's taken from {@link android.support.v4.widget}.
* I've done some slight changes.
*
* @hide
From source file com.jinzht.pro.ptr.header.MaterialProgressDrawable.java
/**
* Fancy progress indicator for Material theme.
* It's taken from {@link android.support.v4.widget}.
* I've done some slight changes.
*
* @hide