【Kotlin设计模式】建造者模式在Android中的应用

前言

建造者模式(Builder Pattern)是一种创建型设计模式,一步一步地构建一个复杂对象的不同部分,而不是直接创建该对象的实例。建造者模式的核心思想是将对象的构建过程与其表示分离,使得同样的构建过程可以创建不同的表示。

具体来说,构建者模式使用一个独立的构建器(Builder)类来封装对象的构建过程。构建器类提供一系列方法来设置对象的属性,并最终返回构建好的对象。这种方式可以避免使用多个构造函数或过多的参数,使得对象的构建过程更加直观和易于扩展。

应用

Android中,也有很多组件和库中使用到了建造者模式,比如原生AlertDialogRetrofitNotificationCompat等。

AlertDailog中应用:

kotlin 复制代码
val builder = AlertDialog.Builder(this)
builder.setTitle("设计模式")
       .setMessage("这是建造者模式吗")
       .setPositiveButton("是的") { dialog, _ -> dialog.dismiss() }
       .setNegativeButton("不是") { dialog, _ -> dialog.dismiss() }
       .create()
       .show()
       

Retrofit中应用:

kotlin 复制代码
val retrofit = Retrofit.Builder()
    .baseUrl("https://blog.csdn.net/ho")
    .addConverterFactory(GsonConverterFactory.create())
    .build()

val apiService = retrofit.create(ApiService::class.java)

从上述例子可以看出,建造者模式的写法比较清晰,比如AlertDailog中的builder对象采用链式调用setTitlesetMessage等方法,我们就仿照AlertDailog使用Kotlin来实现下建造者模式。

kotlin 复制代码
package com.ho.csdn.widget

import android.app.Dialog
import android.content.Context
import android.graphics.Bitmap
import java.lang.IllegalArgumentException


class StudentPickDialog(context: Context) : Dialog(context) {

    private var mId: Long = 0L

    private var mAvatar: Bitmap? = null

    private var mName: String = ""

    private var mAge: Int = 0

    private constructor(
        context: Context,
        id: Long,
        avatar: Bitmap?,
        name: String,
        age: Int
    ) : this(context) {
        mAvatar = avatar
        mId = id
        mName = name
        mAge = age
    }

    companion object {

        fun init(context: Context): Builder {
            return Builder(context)
        }
    }


    data class Builder(private val mContext: Context) {

        private var mId: Long = 0L

        private var mAvatar: Bitmap? = null

        private var mName: String = ""

        private var mAge: Int = 0

        /**
         * 设置id
         */
        fun setId(id: Long) = apply {
            this.mId = id
        }

        /**
         * 设置头像
         */
        fun setAvatar(avatar: Bitmap) = apply {
            this.mAvatar = avatar
        }

        /**
         * 设置名称
         */
        fun setName(name: String) = apply {
            this.mName = name
        }

        /**
         * 设置年龄
         */
        fun setAge(age: Int) = apply {
            this.mAge = age
            if (mAge > 150) {
                throw IllegalArgumentException("年龄超过了限制")
            }
        }

        fun build() = StudentPickDialog(mContext, mId, mAvatar, mName, mAge)
    }
}

这里自定义Dailog显示选择某一学生信息做展示,建造者模式部分如下,新建StudentPickDialog继承Dialog,在类内部新建Builder类,创建setAvatarsetNamesetAge且返回Builder对象,外部创建了Builder对象后就可以链式调用方法了。

这里使用到了Kotlin的apply扩展函数,函数返回调用它的对象本身的特性。

新建build()方法,返回StudentPickDialog对象,将Id、名字、头像、年龄作为构造参数传入,调用如下。

kotlin 复制代码
   StudentPickDialog
          .init(requireContext())
          .setId(92229)
          .setAvatar(detectBitmap!!)
          .setName("Ho")
          .setAge(30)
          .build()
          .show()
          

总结

Android 中,建造者模式被广泛应用于需要配置多个选项、步骤复杂或构建过程不容易一步完成的场景。通过建造者模式,可以更轻松地创建和配置复杂对象。

相关推荐
闲暇部落5 分钟前
kotlin内联函数——let,run,apply,also,with的区别
kotlin·内联函数
五味香27 分钟前
Java学习,List 元素替换
android·java·开发语言·python·学习·golang·kotlin
晚秋贰拾伍1 小时前
设计模式的艺术-命令模式
运维·设计模式·运维开发·命令模式·开闭原则
十二测试录1 小时前
【自动化测试】—— Appium使用保姆教程
android·经验分享·测试工具·程序人生·adb·appium·自动化
ZoeLandia1 小时前
从前端视角看设计模式之行为型模式篇
前端·设计模式
晚秋贰拾伍2 小时前
设计模式的艺术-迭代器模式
设计模式·迭代器模式
Couvrir洪荒猛兽3 小时前
Android实训九 数据存储和访问
android
aloneboyooo3 小时前
Android Studio安装配置
android·ide·android studio
Jacob程序员3 小时前
leaflet绘制室内平面图
android·开发语言·javascript
2401_897907864 小时前
10天学会flutter DAY2 玩转dart 类
android·flutter