android 支付动画效果

最近研究了一些动画效果 这里就分享给大家吧 gif效果不太好 因为压缩了一下 凑合看看 哈哈

20181106164205.gif
1.布局中有两个自定义类(外围整体 用相对布局就能看到效果)
<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<com.simple.m.simpleandroid.MySquare
    android:id="@+id/sqareProcess"
    android:layout_width="150dip"
    android:layout_marginTop="100dp"
    android:layout_height="100dip"
    android:layout_centerHorizontal="true"
    app:currentPogress="0"
    app:progressColor="#c1d1dd"
    app:strokeColor="@color/lande"
    app:strokeWith="2dip"
    app:textColor="@color/lande"
    app:textSize="15sp" />
<com.simple.m.simpleandroid.Yuan
    android:layout_below="@+id/sqareProcess"
    android:id="@+id/yuan"
    android:visibility="gone"

    android:layout_width="50dip"

    android:layout_height="50dip"
    android:layout_centerHorizontal="true"
  />
2.画线类
public class MySquare extends View {

private static final float PER_LINE_MAX_Top = 40;
private static final float PER_LINE_MAX_Rit = 20;


private Context mContext;
private Paint paint;
private Paint processPaint;
private Paint textPaint;
private Canvas canvas;

private int currentPogress;
private int strokeColor = Color.BLACK;
private float strokeWith = 2.0f;
private int progressColor = Color.RED;
private int textColor = Color.BLUE;
private float textSize = 10.0f;

public MySquare(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);
    mContext = context;
    initValue(attrs);
}


private void initValue(AttributeSet attrs) {
    TypedArray typedArray = mContext.obtainStyledAttributes(attrs, R.styleable.SquareProcessView);
    currentPogress = typedArray.getInteger(R.styleable.SquareProcessView_currentPogress, 0);
    strokeColor = typedArray.getColor(R.styleable.SquareProcessView_strokeColor, ContextCompat.getColor(mContext, R.color.colorPrimary));
    strokeWith = typedArray.getDimension(R.styleable.SquareProcessView_strokeWith, strokeWith);
    progressColor = typedArray.getColor(R.styleable.SquareProcessView_progressColor, ContextCompat.getColor(mContext, R.color.colorAccent));
    textColor = typedArray.getColor(R.styleable.SquareProcessView_textColor, ContextCompat.getColor(mContext, R.color.colorAccent));
    textSize = typedArray.getDimension(R.styleable.SquareProcessView_textSize, textSize);
    initPaints();
}

private void initPaints() {
    paint = new Paint();
    paint.setColor(strokeColor);
    paint.setStrokeWidth(strokeWith);
    paint.setAntiAlias(true);
    paint.setStyle(Paint.Style.STROKE);
    initProcessPaint();
    initTextPaint();
}

private void initProcessPaint() {
    processPaint = new Paint();
    processPaint.setColor(progressColor);
    processPaint.setStrokeWidth(strokeWith);
    processPaint.setAntiAlias(true);
    processPaint.setStyle(Paint.Style.STROKE);
}

private void initTextPaint() {
    textPaint = new Paint();
    textPaint.setColor(textColor);
    textPaint.setAntiAlias(true);
    textPaint.setStyle(Paint.Style.STROKE);
    textPaint.setTextSize(textSize);

}

public void setCurrentPogress(int currentPogress) {
    this.currentPogress = currentPogress;
    invalidate();
}

@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    this.canvas = canvas;
    /*画图*/
    drawSquare();
    /*画圆*/
    drawrec();

        /*画线*/
    drawProcessSquare(currentPogress);

}

private void drawrec() {
    Paint mPaint = new Paint();
    mPaint.setAntiAlias(true);
    mPaint.setStrokeWidth(strokeWith);

    mPaint.setColor(Color.rgb(79,80,101));
    canvas.drawCircle(canvas.getWidth() / 2, 10, 10, mPaint);
}

/**
 * 画线
 */
private void drawSquare() {
    drawRightLine();

}


private void drawRightLine() {
    Path path = new Path();
    /*把坐标移动到右上角*/
    path.moveTo(canvas.getWidth() / 2, 20);
    path.lineTo(canvas.getWidth() / 2, canvas.getHeight()-20);
    canvas.drawPath(path, paint);
}


/**
 * 画进度
 */
private void drawProcessSquare(int progress) {

    float rightProcess = 0;

    rightProcess = progress ;

    drawProgressRightLine(rightProcess);

}


private void drawProgressRightLine(float progress) {
    Path path = new Path();
    /*把坐标移动到右上角*/
    path.moveTo(canvas.getWidth() / 2, 20);
    path.lineTo(canvas.getWidth() / 2, canvas.getHeight() / PER_LINE_MAX_Rit * progress);
    canvas.drawPath(path, processPaint);
}


}
3.画圆类
public class Yuan extends View {


/**
 * view的宽度
 */
private int width;
/**
 * view的高度
 */
private int height;
/**
 * 圆角半径
 */
private int circleAngle;
/**
 * 默认两圆圆心之间的距离=需要移动的距离
 */
private int default_two_circle_distance;
/**
 * 两圆圆心之间的距离
 */
private int two_circle_distance;
/**
 * 背景颜色
 */
private int bg_color = 0xffbc7d53;
/**
 * 按钮文字字符串
 */
private String buttonString = "确认完成";
/**
 * 动画执行时间
 */
private int duration = 1000;
/**
 * view向上移动距离
 */
private int move_distance = 300;

/**
 * 圆角矩形画笔
 */
private Paint paint;
/**
 * 文字画笔
 */
private Paint textPaint;
/**
 * 对勾(√)画笔
 */
private Paint okPaint;
/**
 * 文字绘制所在矩形
 */
private Rect textRect = new Rect();

/**
 * 动画集
 */
private AnimatorSet animatorSet = new AnimatorSet();


/**
 * 绘制对勾(√)的动画
 */
private ValueAnimator animator_draw_ok;

/**
 * 是否开始绘制对勾
 */
private boolean startDrawOk = false;


/**
 * 根据view的大小设置成矩形
 */
private RectF rectf = new RectF();

/**
 * 路径--用来获取对勾的路径
 */
private Path path = new Path();
/**
 * 取路径的长度
 */
private PathMeasure pathMeasure;
/**
 * 对路径处理实现绘制动画效果
 */
private PathEffect effect;
private Canvas canvas;


private float strokeWith = 2.0f;


public Yuan(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);
    initPaint();
}


@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    this.canvas = canvas;

    /*画圆*/
    drawrec();
    canvas.drawPath(path, okPaint);


}

private void drawrec() {
    Paint mPaint = new Paint();
    mPaint.setAntiAlias(true);
    mPaint.setStrokeWidth(strokeWith);

    mPaint.setColor(Color.rgb(20, 164, 101));
    canvas.drawCircle(canvas.getWidth() / 2, 50, 50, mPaint);
}


/**
 * 初始化所有动画
 */
private void initAnimation() {

    set_draw_ok_animation();

    animatorSet
            .play(animator_draw_ok);


}


/**
 * 绘制对勾的动画
 */
private void set_draw_ok_animation() {
    animator_draw_ok = ValueAnimator.ofFloat(1, 0);
    animator_draw_ok.setDuration(duration);
    animator_draw_ok.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
        @Override
        public void onAnimationUpdate(ValueAnimator animation) {
            startDrawOk = true;
            float value = (Float) animation.getAnimatedValue();

            effect = new DashPathEffect(new float[]{pathMeasure.getLength(), pathMeasure.getLength()}, value * pathMeasure.getLength());
            okPaint.setPathEffect(effect);
            invalidate();
        }
    });
}

private void initPaint() {


    okPaint = new Paint();
    okPaint.setStrokeWidth(10);
    okPaint.setStyle(Paint.Style.STROKE);
    okPaint.setAntiAlias(true);
    okPaint.setColor(Color.WHITE);
}

@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
    super.onSizeChanged(w, h, oldw, oldh);

    width = w;
    height = h;

    default_two_circle_distance = (w - h) / 2;

    initOk();
    initAnimation();
    start();

}


/**
 * 绘制对勾
 */
private void initOk() {
    //对勾的路径
    path.moveTo(default_two_circle_distance + height / 9 * 3, height / 9 * 3);
    path.lineTo(default_two_circle_distance + height / 2, height / 8 * 4);
    path.lineTo(default_two_circle_distance + height / 4 * 3, height / 4);

    pathMeasure = new PathMeasure(path, true);

}

/**
 * 启动动画
 */
public void start() {
    animatorSet.start();
}


 }
最后附上我们的activity中的代码 大功告成
 public class Main2Activity extends AppCompatActivity {
 private MySquare squareProgressView;
 private MyHandnler myHandnler = new MyHandnler(this);
 private int currentProcess;
 private int currentProcessGou;
 public WeakReference<Main2Activity> weakReference;
 private Yuan yuan;
 Animation animation;
 Button button;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);
    squareProgressView = (MySquare) findViewById(R.id.sqareProcess);

    animation = AnimationUtils.loadAnimation(this, R.anim.anim_small);

    yuan = (Yuan) findViewById(R.id.yuan);
    try {
        sleep(2000);

    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    button= findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            myHandnler.sendEmptyMessage(1);
        }
    });
}

class MyHandnler extends Handler {


    public MyHandnler(Main2Activity mainActivity) {
        weakReference = new WeakReference<>(mainActivity);
    }

    @Override
    public void handleMessage(Message msg) {
        super.handleMessage(msg);
        /*圈线*/
        if (msg.what == 1) {
            if (weakReference.get().currentProcess <= 100) {
                weakReference.get().currentProcess++;
                weakReference.get().squareProgressView.setCurrentPogress(weakReference.get().currentProcess);
                sendEmptyMessageDelayed(1, 0);
            }
            if (weakReference.get().currentProcess == 40) {
                yuan.setVisibility(View.VISIBLE);
                yuan.startAnimation(animation);
                sendEmptyMessageDelayed(3, 0);
            }


        }
    }
}

@Override
protected void onDestroy() {
    super.onDestroy();
    myHandnler.removeCallbacksAndMessages(null);
}
 }

<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="220"
android:fillAfter="true"
android:fillBefore="true"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="1"
android:repeatMode="reverse"
android:toXScale="1.5"
android:toYScale="1.5"/>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,515评论 25 707
  • 用两张图告诉你,为什么你的 App 会卡顿? - Android - 掘金 Cover 有什么料? 从这篇文章中你...
    hw1212阅读 12,693评论 2 59
  • 【Android 动画】 动画分类补间动画(Tween动画)帧动画(Frame 动画)属性动画(Property ...
    Rtia阅读 6,103评论 1 38
  • 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...
    皇小弟阅读 46,710评论 22 664
  • 转眼之间认识你已经7年了。 第一次与你相识是在初一的时候,留给我印象最深刻的就是白色T恤,上面印有你小...
    山河之间阅读 254评论 1 6