建立自己的王国:Android 自定义封装View-4(下)

(上一篇)//www.greatytc.com/p/2b9bdd5c2949介绍了怎么画星期名。
这部介绍画月的天数。

别尔盖茨语录

思路:

1.获得今天的日期,画对应的日期名字下。
2.计算出当前日期左边右边的值,并画出
3.处理一些特殊情况,比如计算的天数不在当前月,两位数和一位数的位置等
**4.按照距离关系,设定点击事件。

实现:

老规矩,重写View的构造方法以及onMeasure,onDraw方法, 为了点击事件重写onTouch方法.
1.定义需要的变量。

/**
     * M paint
     */
    private lateinit var mPaint: Paint
    private lateinit var cPaint: Paint
    /**
     * Current 当前天
     */
    private var current: Int? = null
    /**
     * Today 当前日期
     */
    private var today: Int by Delegates.notNull()
    /**
     * Start 开始数字
     */
    private var start: Int? = null
    /**
     * Month 当前月
     */
    private var month: Int by Delegates.notNull()
    /**
      *本年
      */
    private var year by Delegates.notNull<Int>()
    /**
     * Last month max 上月总天数
     */
    private var lastMonthMax by Delegates.notNull<Int>()
    /**
     * Current month max  本月总天数
     */
    private var currentMonthMax by Delegates.notNull<Int>()
      /**
      *负责点击事件的处理。
    **/
   
  1. 为了处理点击事件,添加接口
/**
 * Add on date click listener
 * 点击事件
 * @constructor Create empty Add on date click listener
 */
interface AddOnDateClickListener {
    fun singleClick(position: Int)
}
  1. 初始化变量。
    private fun initView() {
        //获取今天的数据
        val calendar = Calendar.getInstance()
        //时区
        calendar.timeZone = TimeZone.getTimeZone("GMT+8")
        year = calendar.get(Calendar.YEAR)
        //注:月从0开始的。
        month = calendar.get(Calendar.MONTH) + 1
        //今天
        today = calendar.get(Calendar.DAY_OF_MONTH)
        //周数

        if (current == null) {
            //注意:开始是从周日
            current =if (calendar.get(Calendar.DAY_OF_WEEK)==7){
                0
            }else{
                calendar.get(Calendar.DAY_OF_WEEK)-1
            }

        }
        //比较周,然后计算出开始日期.
        if (start == null) {
            start=today- current!! +1

        }
        //获取上个月的天数。
        //如果不再本年。
        with(month - 1) {
            lastMonthMax = if (this == 0) {
                //12月的总数永远是31天,所以不需要从Calendar获取。
                31
            } else {
                getMonthLastDay(year, this)
            }
        }
        //获取本月最大天数.
        currentMonthMax = getMonthLastDay(year, month)

        mPaint = Paint()
        mPaint.textSize = DisplayUtils.dip2px(14F).toFloat()
        mPaint.color = Color.parseColor("#3E3E3F")
        mPaint.isAntiAlias = true

        cPaint = Paint()
        cPaint.color = Color.parseColor("#005BAB")
        cPaint.isAntiAlias = true

    }
  1. 重写onMeasure方法,并且进行Padding值的运算
    //写死宽度,高度最少37dp并且添加左右Padding值。
        setMeasuredDimension(
            widthMeasureSpec,
            (DisplayUtils.dip2px(37F) + DisplayUtils.dip2Px(paddingBottom+paddingTop)).toInt()
        )

5.重写onDraw方法

 //index (索引) 0...6, value (值) -1...6(取决于当前的日期)
        for ((index, value: Int) in (start!!..start!! + 6).withIndex()) {
            mPaint.color = Color.parseColor("#3E3E3F")
            //要画的数字(天数,可能是上月的,也可能是下个月的。)
            var tempPrintValue = value
            //如果是当天,画圆形,画天数文字。
            if (current!! - 1 == index) {
                //判断
                //如果低于本月。
                if (value <= 0) {
                    tempPrintValue = lastMonthMax + value
                }
                //如果超过本月
                if (value > currentMonthMax) {
                    tempPrintValue = value - currentMonthMax
                }
                mPaint.color = Color.WHITE
                //画园。
                canvas?.drawCircle(
                    (index * width) / 7F + DisplayUtils.dip2px(
                        if (tempPrintValue > 9) {
                            31F
                        } else {
                            27F
                        }
                    ),
                    ((height/2).toFloat()),
                    DisplayUtils.dip2px(12F).toFloat(),
                    cPaint
                )
                //描绘天数.
                canvas?.drawText(
                    tempPrintValue.toString(),
                    (index * width) / 7F + DisplayUtils.dip2px(
                        if (index.toString().length > 1) {
                            18F
                        } else {
                            23F
                        }
                    ),
                    (height/2)+DisplayUtils.dip2Px(5),mPaint
                )

            } else {
                //判断
                //如果低于本月。
                if (value <= 0) {
                    tempPrintValue = lastMonthMax + value
                    mPaint.color = Color.parseColor("#7E7E7E")
                }
                //如果超过本月
                if (value > currentMonthMax) {
                    tempPrintValue = value - currentMonthMax
                    mPaint.color = Color.parseColor("#7E7E7E")
                }
                //描绘天数.
                canvas?.drawText(
                    tempPrintValue.toString(),
                    (index * width) / 7F + DisplayUtils.dip2px(
                        if (tempPrintValue.toString().length > 1) {
                            18F
                        } else {
                            23F
                        }
                    ),
                    (height/2)+DisplayUtils.dip2Px(5),
                   // DisplayUtils.dip2px(24F).toFloat(),
                    mPaint
                )
            }
        }
        canvas?.save()

注:onDraw里面处理了一位数和两位数的时候的圆形的位置。
6.点击事件的处理。
主要思路:把宽度等7分,然后不同的区域给对应的值。
更改当前选定的日期,并且重绘,高亮。

 /**
     * 点击事件的处理。
     */
    override fun onTouchEvent(event: MotionEvent?): Boolean {
        val x = event!!.x
//注意:只处理点(down),不处理up,move等,
        if (event.action == MotionEvent.ACTION_DOWN) {
            when (x.toInt()) {
                in 0..width / 7 -> {
                    this.singleClick(1)
                    current = 1
                }
                in width * 1 / 7..width * 2 / 7 -> {
                    this.singleClick(2)
                    current = 2
                }
                in width * 2 / 7..width * 3 / 7 -> {
                    this.singleClick(3)
                    current = 3
                }
                in width * 3 / 7..width * 4 / 7 -> {
                    this.singleClick(4)
                    current = 4
                }
                in width * 4 / 7..width * 5 / 7 -> {
                    this.singleClick(5)
                    current = 5
                }
                in width * 5 / 7..width * 6 / 7 -> {
                    this.singleClick(6)
                    current = 6
                }
                in width * 6 / 7..width -> {
                    this.singleClick(7)
                    current = 7
                }
            }
          //参数重新初始化。
            initView()
          //重绘
            postInvalidate()
        }
        return true
    }
  1. 使用的Utils。
 /**
     * 得到指定月的天数
     */
    private fun getMonthLastDay(year: Int, month: Int): Int {
        val a = Calendar.getInstance()
        a[Calendar.YEAR] = year
        a[Calendar.MONTH] = month - 1
        a[Calendar.DATE] = 1 //把日期设置为当月第一天
        a.roll(Calendar.DATE, -1) //日期回滚一天,也就是最后一天
        return a[Calendar.DATE]
    }

  /**
     * dp转px
     *
     * @param dipValue
     * @return
     */
    fun dip2px(dipValue: Float): Int {
        val scale: Float = Resources.getSystem().displayMetrics.density
        return (dipValue * scale + 0.5f).toInt()
    }

    /**
     *点击事件的处理。
   **/
    override fun singleClick(position: Int) {
        Toast.makeText(context,"选中${start!!+position-1}", Toast.LENGTH_LONG).show()
    }

最后跟上一篇的星期名结合。


Screenshot_20210920_035304.png
Screenshot_20210920_035309.png

完美,收工。

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

推荐阅读更多精彩内容