文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android中怎么实现Builder模式

2023-05-30 22:16

关注

Android中怎么实现Builder模式,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

Builder模式使用链式结构创建复杂对象,将过程与结果分开,创建过程中可以自行组合。

使用场景

一个对象,不同组合,不同顺序生成不同的结果
优点:封装性更规范,程序调用不用关系内部细节,注重结果即可
缺点:如果builder对象过多,会加大内存消耗

public class TabInfoBean { private int count;//Tab的个数 必选 private int currentTab;//默认选中的tab 必选 private String[] tabText;//文字必选 private int normalResId;//可选 private int selectResId;//可选 private int normalTextColor;//可选 private int selectTextColor;//可选 private int normalTextSizeSp;//可选 private int selectTextSizeSp;//可选 private TabInfoBean(TabInfoBuilder builder) {  this.tabText = builder.tabText;  this.count = builder.count;  this.currentTab = builder.currentTab;  this.normalResId = builder.normalResId;  this.selectResId = builder.selectResId;  this.normalTextColor = builder.normalTextColor;  this.selectTextColor = builder.selectTextColor;  this.normalTextSizeSp = builder.normalTextSizeSp;  this.selectTextSizeSp = builder.selectTextSizeSp; } public int getCount() {  return count; } public void setCount(int count) {  this.count = count; } public int getCurrentTab() {  return currentTab; } public void setCurrentTab(int currentTab) {  this.currentTab = currentTab; } public int getNormalResId() {  return normalResId; } public void setNormalResId(int normalResId) {  this.normalResId = normalResId; } public int getSelectResId() {  return selectResId; } public void setSelectResId(int selectResId) {  this.selectResId = selectResId; } public int getNormalTextColor() {  return normalTextColor; } public void setNormalTextColor(int normalTextColor) {  this.normalTextColor = normalTextColor; } public int getSelectTextColor() {  return selectTextColor; } public void setSelectTextColor(int selectTextColor) {  this.selectTextColor = selectTextColor; } public String[] getTabText() {  return tabText; } public void setTabText(String[] tabText) {  this.tabText = tabText; } public int getNormalTextSizeSp() {  return normalTextSizeSp; } public void setNormalTextSizeSp(int normalTextSizeSp) {  this.normalTextSizeSp = normalTextSizeSp; } public int getSelectTextSizeSp() {  return selectTextSizeSp; } public void setSelectTextSizeSp(int selectTextSizeSp) {  this.selectTextSizeSp = selectTextSizeSp; } public static class TabInfoBuilder {  private int count;  private int currentTab;  private String[] tabText;  private int normalResId;  private int selectResId;  private int normalTextColor;  private int selectTextColor;  private int normalTextSizeSp;//可选  private int selectTextSizeSp;//可选  public TabInfoBuilder(String[] tabText, int count, int currentTab) {   this.tabText = tabText;   this.count = count;   this.currentTab = currentTab;  }  public TabInfoBuilder setNormalResId(int normalResId) {   this.normalResId = normalResId;   return this;  }  public TabInfoBuilder setSelectResId(int selectResId) {   this.selectResId = selectResId;   return this;  }  public TabInfoBuilder setNormalTextColor(int normalTextColor) {   this.normalTextColor = normalTextColor;   return this;  }  public TabInfoBuilder setSelectTextColor(int selectTextColor) {   this.selectTextColor = selectTextColor;   return this;  }  public TabInfoBuilder setNormalTextSizeSp(int size) {   this.normalTextSizeSp = size;   return this;  }  public TabInfoBuilder setSelectTextSizeSp(int size) {   this.selectTextSizeSp = size;   return this;  }  public TabInfoBean build() {   return new TabInfoBean(this);  } }}

调用方式

String[] name={"我","是","谁"};  TabInfoBean.TabInfoBuilder tabInfoBuilder=new TabInfoBean.TabInfoBuilder(name,5,0);  

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网行业资讯频道,感谢您对编程网的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯