笔记20170530--自定义一个显示步骤的View(android)

需求:

进行到某一步时的步骤提示view(这个笔记主要记录用自定义view的方式完成)

要达到的效果

demo.png

就是根据步骤,相应的字和背景条变颜色

相关代码:

attrs.xml属性配置:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="numberTextOne" format="string"/>
    <attr name="numberTextTwo" format="string"/>
    <attr name="numberTextThree" format="string"/>

    <attr name="bottomTextOne" format="string"/>
    <attr name="bottomTextTwo" format="string"/>
    <attr name="bottomTextThree" format="string"/>
    <attr name="bottomTextSize" format="dimension"/>
    <attr name="bgSelectColor" format="color"/>
    <attr name="bgUnSelectColor" format="color"/>
    
    <declare-styleable name="NextView">
        <attr name="numberTextOne"/>
        <attr name="numberTextTwo"/>
        <attr name="numberTextThree"/>
        <attr name="bottomTextOne"/>
        <attr name="bottomTextTwo"/>
        <attr name="bottomTextThree"/>
        <attr name="bottomTextSize"/>
        <attr name="bgSelectColor"/>
        <attr name="bgUnSelectColor"/>
    </declare-styleable>
</resources>
NextView代码:
package w.k.w.demonextview;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.RectF;
import android.support.annotation.Nullable;
import android.support.v4.content.ContextCompat;
import android.util.AttributeSet;
import android.view.View;

/**
 * Created by Hello我的World on 2017/5/29.
 */

public class NextView extends View {

    private String numberTextOne;//第一步圆圈的数字
    private String numberTextTwo;//第二步圆圈的数字
    private String numberTextThree;//第三步圆圈的数字
    private String bottomTextOne;//第一步圆圈下边的数字
    private String bottomTextThree;//第二步圆圈下边的数字
    private String bottomTextTwo;//第三步圆圈下边的数字
    private float bottomTextSize;//圆圈下边数字的大小
    private int bgSelectColor;//完成时的颜色
    private int bgUnSelectColor;//未完成时的颜色

    private Paint paint; //画笔
    private Rect numTextRect;//绘制文字时背景的框
    private float sCircleX;//第二个圆的x坐标
    private float sCircleY;//第二个圆的y坐标
    private float fCircleX;//第一个圆的x坐标
    private float fCircleY;//第一个圆的y坐标
    private float lCircleX;//最后一个圆的x坐标
    private float lCircleY;//最后一个圆的y坐标
    private float circleRadius;//圆的半径
    private RectF fistLine;//第一个用作当线的矩形
    private RectF secondLine;//第二个用作当线的矩形
    private RectF thirdLine;//第三个用做当线的矩形
    private RectF lastLine;//最后一个用做当线的矩形

    private int stepIndex;//步骤的下标

    public NextView(Context context) {
        this(context, null);
    }

    public NextView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public NextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        //获取属性
        TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.NextView, defStyleAttr, 0);

        int n = a.getIndexCount();
        for(int i=0;i<n;i++){
            int attr = a.getIndex(i);
            switch (attr){
                case R.styleable.NextView_numberTextOne:
                    numberTextOne = a.getString(attr);
                    break;
                case R.styleable.NextView_numberTextTwo:
                    numberTextTwo = a.getString(attr);
                    break;
                case R.styleable.NextView_numberTextThree:
                    numberTextThree = a.getString(attr);
                    break;
                case R.styleable.NextView_bottomTextOne:
                    bottomTextOne = a.getString(attr);
                    break;
                case R.styleable.NextView_bottomTextTwo:
                    bottomTextTwo = a.getString(attr);
                    break;
                case R.styleable.NextView_bottomTextThree:
                    bottomTextThree = a.getString(attr);
                    break;
                case R.styleable.NextView_bottomTextSize:
                    bottomTextSize = a.getDimension(attr,1);
                    break;
                case R.styleable.NextView_bgSelectColor:
                    bgSelectColor = a.getColor(attr, ContextCompat.getColor(context,R.color.colorPrimary));
                    break;
                case R.styleable.NextView_bgUnSelectColor:
                    bgUnSelectColor = a.getColor(attr,ContextCompat.getColor(context,R.color.colorAccent));
                    break;
            }
        }
        a.recycle();
        //初始化画笔和当作字背景的矩形
        paint = new Paint();
        numTextRect= new Rect();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        //设置不透明,抗锯齿
        paint.setAlpha(255);
        paint.setAntiAlias(true);
        //圆的半径为宽度的25分之1
        circleRadius = getWidth()/25;
        
        //先画最中间的圆,以它为中心点,往两边扩散着画
        //如果步骤标记小于2,就代表没有到第二步,那么这一步的背景色就是没选中时的颜色
        //第二个圆的中心点应该是控件的最中心,所以x坐标是宽度除以2,y坐标是高度除以2
        if(stepIndex<2){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        sCircleX = getWidth()/2;
        sCircleY = getHeight()/2;
        canvas.drawCircle(sCircleX,sCircleY,circleRadius,paint);
        
        //画第一个圆,背景色逻辑同上
        if(stepIndex<1){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        fCircleX = sCircleX-(getWidth()/4);
        fCircleY = sCircleY;
        canvas.drawCircle(fCircleX,fCircleY,circleRadius,paint);
        
        //画第三个圆,背景色处理同上
        if(stepIndex<3){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        lCircleX = sCircleX+(getWidth()/4);
        lCircleY = sCircleY;
        canvas.drawCircle(lCircleX,lCircleY,circleRadius,paint);
        
        //开始画在圆上的字,字体颜色是白色
        paint.setColor(Color.WHITE);
        paint.setTextSize(30);
        paint.getTextBounds(numberTextTwo, 0, numberTextTwo.length(), numTextRect);
        canvas.drawText(numberTextTwo,sCircleX-(numTextRect.width()/2),sCircleY+numTextRect.height()/2,paint);

        paint.getTextBounds(numberTextOne,0,numberTextOne.length(),numTextRect);
        canvas.drawText(numberTextOne,fCircleX-numTextRect.width(),sCircleY+numTextRect.height()/2,paint);

        paint.getTextBounds(numberTextThree,0,numberTextThree.length(),numTextRect);
        canvas.drawText(numberTextThree,lCircleX-numTextRect.width()/2,sCircleY+numTextRect.height()/2,paint);
        
        //画线,背景色处理同上
        if(stepIndex<1){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        paint.setStyle(Paint.Style.FILL);
        //第一条线,left左边离控件左边20起,粗细为10,top就是中线-5,right是第一个圆的左侧,bottom是中线-10,下边几条线以此类推
        //需要注意的是,第二条和第三条线的左边起点得是前边圆心减去半径,如果不是步骤不一致时,线的颜色和圆的颜色不一样,就会遮住一部分圆
        fistLine = new RectF(20,sCircleY-5,fCircleX-numTextRect.width(),sCircleY+5);
        canvas.drawRoundRect(fistLine,10,10,paint);

        if(stepIndex<2){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        secondLine = new RectF(fCircleX+circleRadius,sCircleY-5,sCircleX-numTextRect.width(),sCircleY+5);
        canvas.drawRect(secondLine,paint);

        if(stepIndex<3){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        thirdLine = new RectF(sCircleX+circleRadius,sCircleY-5,lCircleX-numTextRect.width(),sCircleY+5);
        canvas.drawRect(thirdLine,paint);

        lastLine = new RectF(lCircleX+numTextRect.width(),sCircleY-5,getWidth()-20,sCircleY+5);
        canvas.drawRoundRect(lastLine,10,10,paint);
        //开始画圆圈下边的字,颜色处理逻辑同上
        if(stepIndex<1){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        paint.setTextSize(bottomTextSize);
        paint.getTextBounds(bottomTextOne,0,bottomTextOne.length(),numTextRect);
        canvas.drawText(bottomTextOne,fCircleX-numTextRect.width()/2,sCircleY+numTextRect.height()*2+10,paint);

        if(stepIndex<2){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        paint.getTextBounds(bottomTextTwo,0,bottomTextTwo.length(),numTextRect);
        canvas.drawText(bottomTextTwo,sCircleX-numTextRect.width()/2,sCircleY+numTextRect.height()*2+10,paint);

        if(stepIndex<3){
            paint.setColor(bgUnSelectColor);
        }else{
            paint.setColor(bgSelectColor);
        }
        paint.getTextBounds(bottomTextThree,0,bottomTextThree.length(),numTextRect);
        canvas.drawText(bottomTextThree,lCircleX-numTextRect.width()/2,sCircleY+numTextRect.height()*2+10,paint);
    }

    public void setStepColor(int stepIndex){
        this.stepIndex = stepIndex;
        invalidate();
    }
}

activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:wkw="http://schemas.android.com/apk/res-auto"
    tools:context="w.k.w.demonextview.MainActivity">

    <w.k.w.demonextview.NextView
        android:id="@+id/nextView"
        wkw:bgSelectColor="@color/colorPrimary"
        wkw:bgUnSelectColor="@color/colorAccent"
        wkw:numberTextTwo="2"
        wkw:numberTextOne="1"
        wkw:numberTextThree="3"
        wkw:bottomTextOne="第一步"
        wkw:bottomTextTwo="第二步"
        wkw:bottomTextThree="第三步"
        wkw:bottomTextSize="16sp"
        android:layout_width="match_parent"
        android:layout_height="100dp" />

    <Button
        android:layout_below="@id/nextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第一步"
        android:layout_marginLeft="10dp"
        android:layout_alignParentLeft="true"
        android:id="@+id/firstButton"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/nextView"
        android:layout_centerHorizontal="true"
        android:text="第二步"
        android:id="@+id/secondButton"/>

    <Button
        android:layout_below="@id/nextView"
        android:text="第三步"
        android:layout_marginRight="10dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/lastButton"
        android:layout_alignParentRight="true"/>
</RelativeLayout>

MainActivity.java:
package w.k.w.demonextview;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
    NextView nextView;
    Button firstButton,secondButton,lastButton;
    ButtonOnClickListener listener;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        nextView = (NextView) findViewById(R.id.nextView);
        firstButton = (Button) findViewById(R.id.firstButton);
        secondButton = (Button) findViewById(R.id.secondButton);
        lastButton = (Button) findViewById(R.id.lastButton);
        listener = new ButtonOnClickListener();
        firstButton.setOnClickListener(listener);
        secondButton.setOnClickListener(listener);
        lastButton.setOnClickListener(listener);
    }

    class ButtonOnClickListener implements View.OnClickListener{

        @Override
        public void onClick(View v) {
            switch (v.getId()){
                case R.id.firstButton:
                    nextView.setStepColor(1);
                    break;
                case R.id.secondButton:
                    nextView.setStepColor(2);
                    break;
                case R.id.lastButton:
                    nextView.setStepColor(3);
                    break;
            }
        }
    }
}

实现思路:

  • 想清楚必要条件,3个圆圈,圆圈上有字,四根线,每个圆圈下边有字
  • 将必要条件都写到attrs.xml里:第一个圆圈里的数字,第二个圆圈里的数字,第三个圆圈里的数字,第一个圆圈下边的字,第二个圆圈下边的字,第三个圆圈下边的字,圆圈下边字的大小,选中这一步时的背景色,未选中时的背景色
  • 自定义view,attrs里的属性每个要对应一个变量,然后其他相关变量
  • 构造方法中,获取属性并初始化画笔和当作字背景的矩形对象
  • onDraw方法中先画中间的圆圈,然后根据中间的圆圈画其他的东西
  • setStepColor方法,参数是步骤下标,每次执行此方法时重绘
  • 在Activity中调用此View即可

BTW:此笔记里的NextView不支持wrap_content

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

推荐阅读更多精彩内容