最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android設(shè)計模式之Builder模式詳解

 更新時間:2017年08月18日 14:49:44   作者:Allure丶  
這篇文章主要為大家詳細(xì)介紹了Android設(shè)計模式之Builder模式,具有一定的參考價值,感興趣的小伙伴們可以參考一下

Builder模式使用鏈?zhǔn)浇Y(jié)構(gòu)創(chuàng)建復(fù)雜對象,將過程與結(jié)果分開,創(chuàng)建過程中可以自行組合。

使用場景

一個對象,不同組合,不同順序生成不同的結(jié)果
優(yōu)點:封裝性更規(guī)范,程序調(diào)用不用關(guān)系內(nèi)部細(xì)節(jié),注重結(jié)果即可
缺點:如果builder對象過多,會加大內(nèi)存消耗

public class TabInfoBean {

 private int count;//Tab的個數(shù) 必選
 private int currentTab;//默認(rèn)選中的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);
  }
 }
}

調(diào)用方式

String[] name={"我","是","誰"};
  TabInfoBean.TabInfoBuilder tabInfoBuilder=new TabInfoBean.TabInfoBuilder(name,5,0);
  /* TabInfoBean tabInfoBean=tabInfoBuilder
    .setNormalResId()
    .setSelectResId()
    .setNormalTextColor()
    .setSelectTextColor()
    .setNormalTextSizeSp()
    .setSelectTextSizeSp()
    .build();*/

github代碼地址

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

张掖市| 全州县| 五指山市| 尉氏县| 遂宁市| 冕宁县| 沐川县| 岗巴县| 册亨县| 林芝县| 纳雍县| 平顺县| 堆龙德庆县| 台南市| 东兰县| 镇沅| 甘孜县| 博兴县| 望江县| 南华县| 安吉县| 沽源县| 太谷县| 仪征市| 清远市| 绿春县| 临澧县| 驻马店市| 巴南区| 夹江县| 遵义市| 开平市| 都江堰市| 子长县| 新邵县| 老河口市| 贵港市| 玉林市| 靖江市| 西畴县| 泰顺县|