android 自定义步骤栏

简介: 今天自定义了一个操作步骤栏,虽然在平常的项目中用处不大,但是也值得记录一下,先看下效果图

今天自定义了一个操作步骤栏,虽然在平常的项目中用处不大,但是也值得记录一下,先看下效果图
image.png

图中红圈部分的内容就是效果图

先看下使用方法,代码使用了kotlin语言,如果是要java代码的话,可以自行用去转化,不难。

1.布局中使用自定义控件
image.png

2.在activity或是Fragment中使用
image.png

可以看到,使用了建造者模式提供了很多方法供用户自己设置属性,用户可以设置步骤总数,当前处于哪个步骤,是否显示间隔线以及间隔线的宽度高度颜色等,备注里写的很清楚。

以下是完整自定义组件的完整代码

class RegisterStepsBar : LinearLayout {
    private var mCurrentBackground: Int = R.drawable.shape_circle_step //当前圆圈背景色
    private var mPassedBackground: Int = R.drawable.shape_circle_white //通过的圆圈背景色
    private var mNormalBackground: Int = R.drawable.shape_circle_gray //未通过的圆圈背景色
    private var mSpaceBetween: Int = 25 //间隔
    private var mNormalWidth: Int = 14 //未通过的宽度
    private var mCurrentWidth: Int = 18 //当前的宽度
    private var mCurrentStep: Int = 0 //默认当前步骤下标为0
    private var mStepCount: Int = 3 //默认总共3个步骤
    private var mLineWidth: Int = 20 //间隔线宽度 默认是20
    private var mLineHeight: Int = 1 //间隔线高度 默认是1
    private var isShow: Boolean = true //是否显示分隔线
    private var currentTextColor: Int = 0 //当前步骤的字体颜色
    private var passTextColor: Int = 0 //通过的步骤的字体颜色
    private var normalTextColor: Int = 0 //未通过的步骤的字体颜色
    private var lineColor: Int = 0  //间隔线颜色
    private var textSize: Float = 13f //步骤的字体颜色
    private var contentText = emptyArray<String>() //设置文本内容
 
    private var lineView: View? = null
    private var tvCurrentStep: TextView? = null
 
    constructor(context: Context?) : super(context)
 
    constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
 
    constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
 
    /**
     *  dp转换为px
     */
    private fun dp2px(dp: Float): Int {
        return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, resources.displayMetrics).toInt()
    }
 
    /**
     * 初始化控件,先布局后动态创建组件
     */
    fun init() {
        if (mStepCount <= 0)
            return
        if (childCount > 0)
            removeAllViews()
        orientation = HORIZONTAL
        gravity = Gravity.CENTER_VERTICAL
        for (item: Int in 0 until mStepCount) {
            tvCurrentStep = TextView(context)
            if (item < mStepCount - 1 && isShow) {//创建间隔线
                lineView = View(context)
                lineView!!.setBackgroundResource(lineColor)
                val params1 = LayoutParams(dp2px(mLineWidth.toFloat()), dp2px(mLineHeight.toFloat()))
                params1.gravity = Gravity.CENTER
                params1.leftMargin = mSpaceBetween
                lineView!!.layoutParams = params1
            }
            var background: Int
            var width: Int = mNormalWidth
            when {
                item < mCurrentStep -> {
                    background = mPassedBackground
                    tvCurrentStep!!.setTextColor(context.resources.getColor(passTextColor))
                }
                item == mCurrentStep -> {
                    background = mCurrentBackground
                    width = mCurrentWidth
                    tvCurrentStep!!.setTextColor(context.resources.getColor(currentTextColor))
                }
                else -> {
                    background = mNormalBackground
                    tvCurrentStep!!.setTextColor(context.resources.getColor(normalTextColor))
                }
            }
            tvCurrentStep!!.gravity = Gravity.CENTER
            tvCurrentStep!!.textSize = textSize
            if (contentText.isNotEmpty())
                tvCurrentStep!!.text = contentText[item]
            else
                tvCurrentStep!!.text = (item + 1).toString()
 
            val params = LayoutParams(width, width)
            if (item > 0)
                params.leftMargin = mSpaceBetween
            tvCurrentStep!!.layoutParams = params
            addView(tvCurrentStep)
            if (lineView != null) {
                addView(lineView)
                lineView = null
            }
            if (tvCurrentStep is ViewGroup)
                tvCurrentStep = getChildAt(0) as TextView
            tvCurrentStep!!.setBackgroundResource(background)
        }
    }
 
    /**
     * 从Builder中获取到数据
     */
    fun setData(barBuilder: BarBuilder) {
        this.mCurrentBackground = barBuilder.mCurrentBackground
        this.mPassedBackground = barBuilder.mPassedBackground
        this.mNormalBackground = barBuilder.mNormalBackground
        this.mSpaceBetween = barBuilder.mSpaceBetween
        this.mNormalWidth = barBuilder.mNormalWidth
        this.mCurrentWidth = barBuilder.mCurrentWidth
        this.mCurrentStep = barBuilder.mCurrentStep
        this.mStepCount = barBuilder.mStepCount
        this.mLineWidth = barBuilder.mLineWidth
        this.mLineHeight = barBuilder.mLineHeight
        this.isShow = barBuilder.isShow
        this.lineColor = barBuilder.lineColor
        this.currentTextColor = barBuilder.currentTextColor
        this.passTextColor = barBuilder.passTextColor
        this.normalTextColor = barBuilder.normalTextColor
        this.textSize = barBuilder.textSize
        this.contentText = barBuilder.contentText
    }
 
    /**
     * 建造者模式类 ---------------------------------------------------------------------------
     */
    inner class BarBuilder {
        var mCurrentBackground: Int = R.drawable.shape_circle_step //当前圆圈背景色
        var mPassedBackground: Int = R.drawable.shape_circle_white //通过的圆圈背景色
        var mNormalBackground: Int = R.drawable.shape_circle_gray //未通过的圆圈背景色
        var mSpaceBetween: Int = 25 //间隔
        var mNormalWidth: Int = 36 //未通过的宽度
        var mCurrentWidth: Int = 38 //当前的宽度
        var mCurrentStep: Int = 0 //默认当前步骤下标为0
        var mStepCount: Int = 3 //默认总共3个步骤
        var mLineWidth: Int = 20 //间隔线宽度 默认是20
        var mLineHeight: Int = 1 //间隔线高度 默认是1
        var isShow: Boolean = true //是否显示分隔线
        var lineColor: Int = R.color.colorPrimary //间隔线颜色
        var currentTextColor: Int = R.color.colorPrimary //当前步骤的字体颜色
        var passTextColor: Int = R.color.colorPrimary //通过的步骤的字体颜色
        var normalTextColor: Int = R.color.colorPrimary //未通过的步骤的字体颜色
        var textSize: Float = 13f //步骤的字体颜色
        var contentText = emptyArray<String>() //设置文本内容
 
        /**
         * 动态设置多少步骤
         */
        fun setUp(stepCount: Int, currentStep: Int): BarBuilder {
            this.mStepCount = stepCount
            if (currentStep > 0)
                this.mCurrentStep = currentStep - 1
            return this
        }
 
        /**
         * 设置分割线的宽度
         */
        fun setLineWidth(width: Float, height: Float): BarBuilder {
            mLineWidth = dp2px(width)
            mLineHeight = dp2px(height)
            return this
        }
 
        fun setTextSize(size: Float): BarBuilder {
            this.textSize = size
            return this
        }
 
        /**
         * 设置圆圈背景色
         */
        fun setBackground(currentBg: Int, passedBg: Int, normalBg: Int): BarBuilder {
            mCurrentBackground = currentBg
            mPassedBackground = passedBg
            mNormalBackground = normalBg
            return this
        }
 
        /**
         * 设置圆圈的大小
         */
        fun setCircleWidth(currentWidth: Int, normalWidth: Int): BarBuilder {
            mCurrentWidth = currentWidth //当前步骤圆圈大小
            mNormalWidth = normalWidth //非当前步骤圆圈大小
            return this
        }
 
        /**
         * 是否显示间隔线
         */
        fun isShowLine(isShow: Boolean): BarBuilder {
            this.isShow = isShow
            return this
        }
 
        /**
         * 设置间隔线的颜色
         */
        fun setLineColor(color: Int): BarBuilder {
            this.lineColor = color
            return this
        }
 
        /**
         * 设置步骤文本内容
         */
        fun setContent(content: Array<String>): BarBuilder {
            if (content.size != mStepCount)
                return this
            else
                contentText = content
            return this
        }
 
        /**
         * 设置圆圈跟分隔线的间距或是圆圈跟圆圈之间的间距
         */
        fun setSpace(space: Int): BarBuilder {
            mSpaceBetween = space
            return this
        }
 
        /**
         * 设置字体的颜色
         */
        fun setTextColor(currentTextColor: Int, passTextColor: Int, normalTextColor: Int): BarBuilder {
            this.currentTextColor = currentTextColor
            this.passTextColor = passTextColor
            this.normalTextColor = normalTextColor
            return this
        }
 
        fun build(): RegisterStepsBar {
            this@RegisterStepsBar.setData(this)
            return this@RegisterStepsBar
        }
    }
}
相关文章
|
1月前
|
Android开发 开发者
安卓应用开发中的自定义视图
【9月更文挑战第37天】在安卓开发的海洋中,自定义视图犹如一座座小岛,等待着勇敢的探索者去发现其独特之处。本文将带领你踏上这段旅程,从浅滩走向深海,逐步揭开自定义视图的神秘面纱。
41 3
|
1月前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
85 0
|
3月前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
78 2
基于Android P,自定义Android开机动画的方法
|
3月前
|
供应链 物联网 区块链
未来触手可及:探索新兴技术的趋势与应用安卓开发中的自定义视图:从基础到进阶
【8月更文挑战第30天】随着科技的飞速发展,新兴技术如区块链、物联网和虚拟现实正在重塑我们的世界。本文将深入探讨这些技术的发展趋势和应用场景,带你领略未来的可能性。
|
3月前
|
测试技术 Android开发 Python
探索软件测试的艺术:从基础到高级安卓应用开发中的自定义视图
【8月更文挑战第29天】在软件开发的世界中,测试是不可或缺的一环。它如同艺术一般,需要精细的技巧和深厚的知识。本文旨在通过浅显易懂的语言,引领读者从软件测试的基础出发,逐步深入到更复杂的测试策略和工具的使用,最终达到能够独立进行高效测试的水平。我们将一起探索如何通过不同的测试方法来确保软件的质量和性能,就像艺术家通过不同的色彩和笔触来完成一幅画作一样。
|
17天前
|
搜索推荐 前端开发 Android开发
安卓应用开发中的自定义视图实现
【10月更文挑战第30天】在安卓开发的海洋中,自定义视图是那抹不可或缺的亮色,它为应用界面的个性化和交互体验的提升提供了无限可能。本文将深入探讨如何在安卓平台创建自定义视图,并展示如何通过代码实现这一过程。我们将从基础出发,逐步引导你理解自定义视图的核心概念,然后通过一个实际的代码示例,详细讲解如何将理论应用于实践,最终实现一个美观且具有良好用户体验的自定义控件。无论你是想提高自己的开发技能,还是仅仅出于对安卓开发的兴趣,这篇文章都将为你提供价值。
|
19天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
28 5
|
1月前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
2月前
|
Android开发 开发者
安卓开发中的自定义视图:从入门到精通
【9月更文挑战第19天】在安卓开发的广阔天地中,自定义视图是一块充满魔力的土地。它不仅仅是代码的堆砌,更是艺术与科技的完美结合。通过掌握自定义视图,开发者能够打破常规,创造出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战应用,一步步展示如何用代码绘出心中的蓝图。无论你是初学者还是有经验的开发者,这篇文章都将为你打开一扇通往创意和效率的大门。让我们一起探索自定义视图的秘密,将你的应用打造成一件艺术品吧!
62 10
|
2月前
|
XML 编解码 Android开发
安卓开发中的自定义视图控件
【9月更文挑战第14天】在安卓开发中,自定义视图控件是一种高级技巧,它可以让开发者根据项目需求创建出独特的用户界面元素。本文将通过一个简单示例,引导你了解如何在安卓项目中实现自定义视图控件,包括创建自定义控件类、处理绘制逻辑以及响应用户交互。无论你是初学者还是有经验的开发者,这篇文章都会为你提供有价值的见解和技巧。
46 3
下一篇
无影云桌面