美文网首页Android之界面Android自定义View
自定义View-29 仿直播圆点加载效果

自定义View-29 仿直播圆点加载效果

作者: zsj1225 | 来源:发表于2018-07-21 12:25 被阅读122次

    1. 效果:

    vg9hw-tbixd.gif

    2. 实现思路

    2.1 默认状态三个圆点重叠.

    2.2 一个圆点往左移动,再往右回到重叠点,另外一个圆点往右移动,再往左回到重叠点.还有一个圆点在中间不动

    2.3 等回到重叠点改变颜色.往左边的颜色给中间,中间给右边.右边给左边.

    3.代码实现

    public class CircleView extends View {
        private Paint mCirclePaint = null;
        private int mColor;
    
        public CircleView(Context context) {
            this(context, null);
        }
    
        public CircleView(Context context, @Nullable AttributeSet attrs) {
            this(context, attrs, 0);
        }
    
        public CircleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
            mCirclePaint = new Paint();
            mCirclePaint.setAntiAlias(true);
            mCirclePaint.setDither(true);
        }
    
    
        @Override
        protected void onDraw(Canvas canvas) {
            super.onDraw(canvas);
            int cx = getWidth()/2;
            int cy = getHeight()/2;
    
            canvas.drawCircle(cx,cy,cx,mCirclePaint);
        }
    
        public void exChangeColor(int color){
            mColor = color;
            mCirclePaint.setColor(color);
            invalidate();
        }
    
        public int getColor() {
            return mColor;
        }
    }
    
    
    public class LoadingView extends RelativeLayout {
    
        private final CircleView mRightView;
        private final CircleView mMiddleView;
        private CircleView mLeftView;
        private long ANIMATOR_DURATION = 350;
    
        public LoadingView(Context context) {
            this(context, null);
        }
    
        public LoadingView(Context context, AttributeSet attrs) {
            this(context, attrs, 0);
        }
    
        public LoadingView(Context context, AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
            setBackgroundColor(Color.WHITE);
    
            mLeftView = getCircleView(context);
            mRightView = getCircleView(context);
            mMiddleView = getCircleView(context);
    
            mLeftView.exChangeColor(Color.RED);
            mMiddleView.exChangeColor(Color.BLUE);
            mRightView.exChangeColor(Color.GREEN);
    
            addView(mLeftView);
            addView(mRightView);
            addView(mMiddleView);
    
            post(new Runnable() {
                @Override
                public void run() {
                    expandAnimation();
                }
            });
        }
    
        /**
         * 往外跑的动画
         */
        private void expandAnimation() {
            //左边的View往左走
            ObjectAnimator leftTranslationAnimator = ObjectAnimator.ofFloat(mLeftView, "translationX", 0, -dip2px(20));
            ObjectAnimator rightTranslationAnimator = ObjectAnimator.ofFloat(mRightView, "translationX", 0, dip2px(20));
    
            AnimatorSet set = new AnimatorSet();
            set.playTogether(leftTranslationAnimator, rightTranslationAnimator);
            set.setDuration(ANIMATOR_DURATION);
            set.addListener(new AnimatorListenerAdapter() {
                @Override
                public void onAnimationEnd(Animator animation) {
                    inAnimation();
                }
            });
    
            set.start();
        }
    
        /**
         * 往里跑的动画
         */
        protected void inAnimation() {
    //左边的View往左走
            ObjectAnimator leftTranslationAnimator = ObjectAnimator.ofFloat(mLeftView, "translationX", -dip2px(20), 0);
            ObjectAnimator rightTranslationAnimator = ObjectAnimator.ofFloat(mRightView, "translationX", dip2px(20), 0);
    
            AnimatorSet set = new AnimatorSet();
            set.playTogether(leftTranslationAnimator, rightTranslationAnimator);
            set.setDuration(ANIMATOR_DURATION);
            set.addListener(new AnimatorListenerAdapter() {
                @Override
                public void onAnimationEnd(Animator animation) {
                    //往里动画执行完毕.改变颜色.
                    //改变颜色规则,左边的颜色给中间,中间给右边,右边给左边
                    int leftColor = mLeftView.getColor();
                    int middleColor = mMiddleView.getColor();
                    int rightColor = mRightView.getColor();
    
                    mMiddleView.exChangeColor(leftColor);
                    mRightView.exChangeColor(middleColor);
                    mLeftView.exChangeColor(rightColor);
    
                    expandAnimation();
                }
            });
    
            set.start();
        }
    
    
        private CircleView getCircleView(Context context) {
            CircleView circleView = new CircleView(context);
            LayoutParams params = new LayoutParams(dip2px(10), dip2px(10));
            params.addRule(CENTER_IN_PARENT);
            circleView.setLayoutParams(params);
            return circleView;
        }
    
        private int dip2px(int dip) {
            return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dip, getResources().getDisplayMetrics());
        }
    }
    
    

    4.完整代码

    loadingview

    相关文章

      网友评论

        本文标题:自定义View-29 仿直播圆点加载效果

        本文链接:https://www.haomeiwen.com/subject/qgchmftx.html