HarmonyOS ArkUI容器類組件-Tabs組件(Tabs、TabContent)

ArkUI開發(fā)框架提供了一種可以通過頁簽進行內容視圖切換的容器組件潮模,每個頁簽對應一個內容視圖的容器組件 Tabs ,它允許包含子組件且子組件只能是 TabContent 痴施,本節(jié)筆者介紹一下 Tabs 的簡單使用擎厢。

Tabs定義介紹

interface TabsInterface {
  (value?: { barPosition?: BarPosition; index?: number; controller?: TabsController }): TabsAttribute;
}

declare enum BarPosition {
  Start,
  End,
}
  • barPosition:指定頁簽位置來創(chuàng)建 Tabs 容器組件, BarPosition 定義了以下兩種類型:
    • Start(默認值):當 vertical 屬性方法設置為 true 時晾剖,頁簽位于容器左側锉矢; vertical 屬性方法設置為 false 時,頁簽位于容器頂部齿尽。
    • Endvertical 屬性方法設置為 true 時沽损,頁簽位于容器右側; vertical 屬性方法設置為 false 時循头,頁簽位于容器底部绵估。
  • index:指定初次初始頁簽索引,默認值為 0 卡骂。
  • controller:設置 Tabs 控制器国裳。

簡單樣例如下所示:

@Entry @Component struct SideBarContainerTest {

  private controller: TabsController = new TabsController();

  build() {
    Column() {
      Tabs({// Tabs不設置vertical屬性時,默認上下排版
        barPosition: BarPosition.Start,
        controller: this.controller
      }) {
        TabContent() {
          Column()
            .width('100%')
            .height('100%')
            .backgroundColor("#aabbcc")
        }
        .size({width: "100%", height: "100%"})
        .tabBar("消息")

        TabContent() {
          Column()
            .width('100%')
            .height('100%')
            .backgroundColor("#bbccaa")
        }
        .size({width: "100%", height: "100%"})
        .tabBar("聯(lián)系人")

        TabContent() {
          Column()
            .width('100%')
            .height('100%')
            .backgroundColor("#ccaabb")
        }
        .size({width: "100%", height: "100%"})
        .tabBar("動態(tài)")
      }
      .size({width: "100%", height: "100%"})
    }
    .width('100%')
    .height('100%')
    .padding(10)
  }
}

樣例運行結果如下圖所示:

Tabs屬性介紹

declare class TabsAttribute extends CommonMethod<TabsAttribute> {
  vertical(value: boolean): TabsAttribute;
  scrollable(value: boolean): TabsAttribute;
  barMode(value: BarMode): TabsAttribute;
  barWidth(value: Length): TabsAttribute;
  barHeight(value: Length): TabsAttribute;
  animationDuration(value: number): TabsAttribute;
}
  • vertical:設置 Tab 是否為左右排列全跨,默認為 false 缝左,表示上下排列。

  • vertical設置為false:

  • barPosition: BarPosition.Start

            Tabs({
              barPosition: BarPosition.Start, // 設置Tab在上方
              controller: this.controller
            }) {
              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#aabbcc")
              }
              .tabBar("消息")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#bbccaa")
              }
              .tabBar("聯(lián)系人")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#ccaabb")
              }
              .tabBar("動態(tài)")
            }
            .vertical(false)

樣例運行結果如下圖所示:

  • barPosition: BarPosition.End
            Tabs({
              barPosition: BarPosition.End, // 設置Tab在下方
              controller: this.controller
            }) {
              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#aabbcc")
              }
              .tabBar("消息")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#bbccaa")
              }
              .tabBar("聯(lián)系人")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#ccaabb")
              }
              .tabBar("動態(tài)")
            }
            .vertical(false)

樣例運行結果如下圖所示:

  • vertical設置為true:
  • barPosition: BarPosition.Start

簡單樣例如下所示:

            Tabs({
              barPosition: BarPosition.Start, // 設置Tab在左側
              controller: this.controller
            }) {
              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#aabbcc")
              }
              .tabBar("消息")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#bbccaa")
              }
              .tabBar("聯(lián)系人")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#ccaabb")
              }
              .tabBar("動態(tài)")
            }
            .width('100%')
            .height('100%')
            .barWidth(80)
            .barHeight(150)
            .vertical(true)
  • barPosition: BarPosition.End
            Tabs({
              barPosition: BarPosition.End, // 設置Tab在右側
              controller: this.controller
            }) {
              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#aabbcc")
              }
              .tabBar("消息")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#bbccaa")
              }
              .tabBar("聯(lián)系人")

              TabContent() {
                Column()
                  .width('100%')
                  .height('100%')
                  .backgroundColor("#ccaabb")
              }
              .tabBar("動態(tài)")
            }
            .width('100%')
            .height('100%')
            .barWidth(80)
            .barHeight(150)
            .vertical(true)
  • scrollable:是否可以通過滑動進行頁面切換,默認為 true 渺杉,表示可以滑動切換頁面蛇数。
  • barMode:設置 TabBar 的布局模式, TabBar 的類型說明如下:
    • ScrollableTabBar 使用實際布局寬度, 超過總長度后可滑動是越。
    • Fixed:所有 TabBar 平均分配寬度耳舅。
  • barWidth:設置 TabBar 的寬度值,不設置時使用系統(tǒng)主題中的默認值倚评。
  • barHeight:設置 TabBar 的高度值浦徊,不設置時使用系統(tǒng)主題中的默認值。
  • animationDuration:設置 TabContent 滑動動畫時長天梧,默認值為 200 盔性。

Tabs事件介紹

declare class TabsAttribute extends CommonMethod<TabsAttribute> {
  onChange(event: (index: number) => void): TabsAttribute;
}
  • onChangeTabs 頁簽切換后觸發(fā)的事件, index 表示當前頁簽下標腿倚。

TabContent定義介紹

interface TabContentInterface {
  (): TabContentAttribute;
}

由源碼可知纯出, TabContent 目前不需要配置默認參數(shù)蚯妇。

TabContent屬性介紹

declare class TabContentAttribute extends CommonMethod<TabContentAttribute> {
  tabBar(value: string | Resource | CustomBuilder |
    { icon?: string | Resource; text?: string | Resource }): TabContentAttribute;
}
  • tabBar:設置 TabBar 的顯示標簽敷燎,根據(jù)源碼可知,tabBar參數(shù)類型支持多種數(shù)據(jù)類型:
    • string | Resource:直接使用文本箩言,樣式使用系統(tǒng)自帶的硬贯。
    • { icon?: string | Resource; text?: string | Resource }:
      • icon:設置標簽的圖標。
      • text:設置標簽的文本陨收。
    • CustomBuilder:自定義 TabBar 標簽

Tabs完整樣例

@Entry @Component struct TabsTest {

  private controller: TabsController = new TabsController();

  @State index: number = 0; // 選項卡下標饭豹,默認為第一個

  @Builder tabMessage() {   // 自定義消息標簽
    Column() {
      Column() {
        Blank()
        Image(this.index == 0 ? 'pages/icon_message_selected.png' : 'pages/icon_message_normal.png')
          .size({width: 25, height: 25})
        Text('消息')
          .fontSize(16)
          .fontColor(this.index == 0 ? "#2a58d0" : "#6b6b6b")
        Blank()
      }
      .height('100%')
      .width("100%")
      .onClick(() => {
        this.index = 0;
        this.controller.changeIndex(this.index);
      })
    }
  }

  @Builder tabContract() {  // 自定義聯(lián)系人標簽
    Column() {
      Blank()
      Image(this.index == 1 ? 'pages/icon_contract_selected.png' : 'pages/icon_contract_normal.png')
        .size({width: 25, height: 25})
      Text('聯(lián)系人')
        .fontSize(16)
        .fontColor(this.index == 1 ? "#2a58d0" : "#6b6b6b")
      Blank()
    }
    .height('100%')
    .width("100%")
    .onClick(() => {
      this.index = 1;
      this.controller.changeIndex(this.index);
    })
  }

  @Builder tabDynamic() {   // 自定義動態(tài)標簽
    Column() {
      Blank()
      Image(this.index == 2 ? 'pages/icon_dynamic_selected.png' : 'pages/icon_dynamic_normal.png')
        .size({width: 25, height: 25})
      Text('動態(tài)')
        .fontSize(16)
        .fontColor(this.index == 2 ? "#2a58d0" : "#6b6b6b")
      Blank()
    }
    .height('100%')
    .width("100%")
    .onClick(() => {
      this.index = 2;
      this.controller.changeIndex(this.index);
    })
  }

  build() {
    Column() {
      Tabs({
        barPosition: BarPosition.End, // TabBar排列在下方
        controller: this.controller   // 綁定控制器
      }) {
        TabContent() {
          Column() {
            Text('消息')
              .fontSize(30)
          }
          .width('100%')
          .height('100%')
          .backgroundColor("#aabbcc")
        }
        .tabBar(this.tabMessage)      // 使用自定義TabBar

        TabContent() {
          Column() {
            Text('聯(lián)系人')
              .fontSize(30)
          }
          .width('100%')
          .height('100%')
          .backgroundColor("#bbccaa")
        }
        .tabBar(this.tabContract)     // 使用自定義TabBar

        TabContent() {
          Column() {
            Text('動態(tài)')
              .fontSize(30)
          }
          .width('100%')
          .height('100%')
          .backgroundColor("#ccaabb")
        }
        .tabBar(this.tabDynamic)      // 使用自定義TabBar
      }
      .width('100%')
      .height('100%')
      .barHeight(60)
      .barMode(BarMode.Fixed)         // TabBar均分
      .onChange((index: number) => {  // 頁面切換回調
        this.index = index;
      })
    }
    .width('100%')
    .height('100%')
  }
}

寫在最后

如果你覺得這篇內容對你還蠻有幫助,我想邀請你幫我三個小忙

  • 點贊务漩,轉發(fā)拄衰,有你們的 『點贊和評論』,才是我創(chuàng)造的動力饵骨。
  • 關注小編翘悉,同時可以期待后續(xù)文章ing??,不定期分享原創(chuàng)知識居触。
  • 想要獲取更多完整鴻蒙最新學習知識點妖混,請移步前往小編:https://gitee.com/MNxiaona/733GH/blob/master/jianshu
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市轮洋,隨后出現(xiàn)的幾起案子制市,更是在濱河造成了極大的恐慌,老刑警劉巖弊予,帶你破解...
    沈念sama閱讀 212,080評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件祥楣,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機误褪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評論 3 385
  • 文/潘曉璐 我一進店門床未,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人振坚,你說我怎么就攤上這事薇搁。” “怎么了渡八?”我有些...
    開封第一講書人閱讀 157,630評論 0 348
  • 文/不壞的土叔 我叫張陵啃洋,是天一觀的道長。 經(jīng)常有香客問我屎鳍,道長宏娄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,554評論 1 284
  • 正文 為了忘掉前任逮壁,我火速辦了婚禮孵坚,結果婚禮上,老公的妹妹穿的比我還像新娘窥淆。我一直安慰自己卖宠,他們只是感情好,可當我...
    茶點故事閱讀 65,662評論 6 386
  • 文/花漫 我一把揭開白布忧饭。 她就那樣靜靜地躺著扛伍,像睡著了一般。 火紅的嫁衣襯著肌膚如雪词裤。 梳的紋絲不亂的頭發(fā)上刺洒,一...
    開封第一講書人閱讀 49,856評論 1 290
  • 那天,我揣著相機與錄音吼砂,去河邊找鬼逆航。 笑死,一個胖子當著我的面吹牛渔肩,可吹牛的內容都是我干的因俐。 我是一名探鬼主播,決...
    沈念sama閱讀 39,014評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼赖瞒,長吁一口氣:“原來是場噩夢啊……” “哼女揭!你這毒婦竟也來了?” 一聲冷哼從身側響起栏饮,我...
    開封第一講書人閱讀 37,752評論 0 268
  • 序言:老撾萬榮一對情侶失蹤吧兔,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后袍嬉,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體境蔼,經(jīng)...
    沈念sama閱讀 44,212評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡灶平,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,541評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了箍土。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片逢享。...
    茶點故事閱讀 38,687評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖吴藻,靈堂內的尸體忽然破棺而出瞒爬,到底是詐尸還是另有隱情,我是刑警寧澤沟堡,帶...
    沈念sama閱讀 34,347評論 4 331
  • 正文 年R本政府宣布侧但,位于F島的核電站,受9級特大地震影響航罗,放射性物質發(fā)生泄漏禀横。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,973評論 3 315
  • 文/蒙蒙 一粥血、第九天 我趴在偏房一處隱蔽的房頂上張望柏锄。 院中可真熱鬧,春花似錦复亏、人聲如沸趾娃。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽茫舶。三九已至,卻和暖如春刹淌,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背讥耗。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評論 1 266
  • 我被黑心中介騙來泰國打工有勾, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人古程。 一個月前我還...
    沈念sama閱讀 46,406評論 2 360
  • 正文 我出身青樓蔼卡,卻偏偏與公主長得像,于是被迫代替她去往敵國和親挣磨。 傳聞我的和親對象是個殘疾皇子雇逞,可洞房花燭夜當晚...
    茶點故事閱讀 43,576評論 2 349

推薦閱讀更多精彩內容