返回
顶部

修改密码

自定义buttonView的酷炫效果

+1

-1

收藏

+1

-1

点赞0

评论0

hello hello! 举起你们的双手,让我听到你们的呐喊!今日一首北京东路的日子送给大家,开始~ 又卡带了,丧心。暴脾气压不住那就不压了,哼哼哈兮打代码出气。 公司的app改版了,登录button变成这样了,考虑到代码本身不会打我,于是乎,我左勾拳,右勾拳,直拳,最后一记重拳K…

hello hello! 举起你们的双手,让我听到你们的呐喊!今日一首北京东路的日子送给大家,开始~

又卡带了,丧心。暴脾气压不住那就不压了,哼哼哈兮打代码出气。

公司的app改版了,登录button变成这样了,

这里写图片描述

考虑到代码本身不会打我,于是乎,我左勾拳,右勾拳,直拳,最后一记重拳K!O!,简直打的惨不忍睹他妈都不认识啦。那么我从哪开始打呢?下面我记录了打法

public class ButtonView extends View implements View.OnClickListener {
    public static final int DEFAULT_DURATION = 500;
    //    内边距偏移量
    private static final int DEFAULT_PADDING_OFFSET = 2;
    private int width = 100;
    private int height = 100;
    private float drawWidth;
    //    drawWidth 的最大与最小值
    private float bigF, smallF;
    private Paint strokePaint, arcPaint;
    private TextPaint textPaint;
    private String text = "on click!";
    private ValueAnimator valueAnimator;
    private int textSize = 20;
    private int textColor = R.color.colorAccent;
    private int strokeSize = 2;
    private int strokeColor = R.color.colorAccent;
    private int arcColor = R.color.arcColor;
    private float startAngle = 5f;
    private int paddingOffset = DEFAULT_PADDING_OFFSET;
    //    记录状态
    public enum State {
        RECT2CIRCLE,
        CIRCLE2RECT
    }
    private State state = State.RECT2CIRCLE;
    // 对外实现点击接口,因为我已经使用了本身的点击接口,防止无效
    public OnClickListener onListener;
    public void setOnListener(OnClickListener onListener) {
        this.onListener = onListener;
    }
    public ButtonView(Context context, AttributeSet attrs) {
        super(context, attrs);
        DisplayMetrics dm = getResources().getDisplayMetrics();
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ButtonView);
        text = (String) a.getText(R.styleable.ButtonView_text);
        if (TextUtils.isEmpty(text)) {
            text = "on click!";
        }
        textSize = a.getDimensionPixelSize(R.styleable.ButtonView_text_size, (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, textSize, dm));
        strokeSize = a.getDimensionPixelSize(R.styleable.ButtonView_stroke_size, (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, strokeSize, dm));
        textColor = a.getColor(R.styleable.ButtonView_text_color, getResources().getColor(textColor));
        strokeColor = a.getColor(R.styleable.ButtonView_stroke_color, getResources().getColor(strokeColor));
        arcColor = a.getColor(R.styleable.ButtonView_arc_color, getResources().getColor(arcColor));
        a.recycle();
        paddingOffset = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, paddingOffset, dm);
        initPaint();
    }

    private void initPaint() {
        strokePaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG);
        strokePaint.setColor(strokeColor);
        strokePaint.setStyle(Paint.Style.STROKE);
        strokePaint.setStrokeWidth(strokeSize);

        textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG | Paint.LINEAR_TEXT_FLAG);
        textPaint.setTextAlign(Paint.Align.CENTER);
        textPaint.setColor(textColor);
        textPaint.setTextSize(textSize);
        textPaint.setTypeface(Typeface.MONOSPACE);
        arcPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG);
        arcPaint.setColor(arcColor);
        arcPaint.setStyle(Paint.Style.STROKE);
        arcPaint.setStrokeWidth(strokeSize);
        setOnClickListener(this);

    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        width = getViewWidth(widthMeasureSpec);
        height = getViewHeight(heightMeasureSpec);

        drawWidth = width;
        setMeasuredDimension(width, height);
        bigF = width - getPaddingLeft() - getPaddingRight();
        smallF = (width + height) / 2f;

    }

    private int getViewHeight(int heightMeasureSpec) {
        int result = 0;
        int mode = MeasureSpec.getMode(heightMeasureSpec);
        int size = MeasureSpec.getSize(heightMeasureSpec);
        if (mode == MeasureSpec.EXACTLY) {
            result = size;
        } else {
            result = height;
            if (mode == MeasureSpec.AT_MOST) {
                result = Math.min(result, size);
            }
       }
       return result;
    }

    private int getViewWidth(int widthMeasureSpec) {
        int result = 0;
        int mode = MeasureSpec.getMode(widthMeasureSpec);
        int size = MeasureSpec.getSize(widthMeasureSpec);
        if (mode == MeasureSpec.EXACTLY) {
            result = size;
        } else {
            result = width;
            if (mode == MeasureSpec.AT_MOST) {
                result = Math.min(result, size);
            }
        }
        return result;
    }

    @Override
    public void onClick(View v) {
        Log.d("aa", "on click!");
        v.setFocusable(false);
        v.setEnabled(false);
        switch (state) {
            case RECT2CIRCLE:
                rect2Circle();
                break;
            case CIRCLE2RECT:
                circle2Rect();
                break;
        }
        if (onListener != null) {
            onListener.onClick(v);
        }
    }
    private void circle2Rect() {
        if (valueAnimator != null) {
            valueAnimator.cancel();
        }
        valueAnimator = ValueAnimator.ofFloat(smallF, bigF);
        valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                drawWidth = (float) animation.getAnimatedValue();
                if (drawWidth == bigF) {
                    state = State.RECT2CIRCLE;
                    setFocusable(true);
                    setEnabled(true);
                    return;
                }
                postInvalidate();
            }
        });
        valueAnimator.setDuration(DEFAULT_DURATION);
        valueAnimator.setInterpolator(new AccelerateInterpolator(1.0f));
        valueAnimator.start();
    }

    private void rect2Circle() {
        if (valueAnimator != null) {
            valueAnimator.cancel();
        }
        valueAnimator = ValueAnimator.ofFloat(bigF, smallF);
        valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                drawWidth = (float) animation.getAnimatedValue();
                if (drawWidth == smallF) {
                    state = State.CIRCLE2RECT;
                    setFocusable(true);
                    setEnabled(true);
                    return;
                }

                postInvalidate();
            }
        });

        valueAnimator.setDuration(DEFAULT_DURATION);
        valueAnimator.setInterpolator(new AccelerateInterpolator(1.0f));
        valueAnimator.start();

    }

    @Override
    protected void onDraw(Canvas canvas) {
        canvas.drawRoundRect(getRectF(), height / 2, height / 2, strokePaint);
        if (drawWidth != smallF) {
            if (drawWidth >= bigF) {
                canvas.drawText(text, width / 2, height / 2 + Math.abs((textPaint.descent() + textPaint.ascent()) / 2), textPaint)
            }
        } else {
            canvas.drawArc(getRectF(), startAngle, 45, false, arcPaint);
            startAngle += 5;
            invalidate();
        }
    }

    private RectF getRectF() {
        return new RectF(width - drawWidth + getPaddingLeft() + paddingOffset,
                getPaddingTop() + paddingOffset,
                drawWidth - getPaddingRight() - paddingOffset,
                height - getPaddingBottom() - paddingOffset);
    }
}

attrs文件代码:

<declare-styleable name="ButtonView">
     <attr name="text" format="string"/>
     <attr name="text_color" format="color"/>
     <attr name="text_size" format="dimension"/>
     <attr name="stroke_size" format="dimension"/>
     <attr name="stroke_color" format="color"/>
     <attr name="arc_color" format="color"/>
</declare-styleable>

布局代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.buttonview.MainActivity">

    <com.example.buttonview.widget.ButtonView
        android:id="@+id/view_bt"
        android:layout_width="200dp"
        android:layout_height="50dp"
        android:layout_centerInParent="true"
</RelativeLayout>

activity代码:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButtonView viewBt = (ButtonView) findViewById(R.id.view_bt);
        viewBt.setOnListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(MainActivity.this,"on Click !",Toast.LENGTH_SHORT).show();
            }
        });
    }
}

DEMO链接

转载请注明:Android开发中文站 » 自定义buttonView的酷炫效果

扫一扫在手机打开

评论
已有0条评论
0/150
提交
热门评论
相关推荐
没有IDE,该如何创建Android项目并运行
  • 开发实例
  • 2022-05-20 18:28
  • 0 0 0
+1
Android 3分钟带你入门开发测试
  • 开发实例
  • 2022-05-20 18:28
  • 0 0 0
+1
一个 Android MVVM 组件化架构框架
  • 开发实例
  • 2022-05-20 18:28
  • 0 0 0
+1
Android9.0针对Toast的特殊处理
  • 开发实例
  • 2022-05-20 18:28
  • 0 0 0
+1
今日要闻
换一批
热点排行