0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

什么是CircleIndicator?CircleIndicator的源碼實(shí)現(xiàn)

OpenAtom OpenHarmony ? 來(lái)源:OpenAtom OpenHarmony ? 作者:OpenAtom OpenHarmony ? 2022-07-22 11:01 ? 次閱讀

UI界面是應(yīng)用程序可視化必不可少的部分。設(shè)計(jì)精致的UI界面可以使得整個(gè)可視化應(yīng)用程序給用戶(hù)留下深刻的印象,是改善用戶(hù)界面體驗(yàn)最直接的方式。

ArkUI開(kāi)發(fā)框架為開(kāi)發(fā)者提供了豐富的UI原生組件,如Navigation(Page頁(yè)面的根容器)、ScrollBar(滾動(dòng)條組件)、Swiper(滑動(dòng)容器)及Tabs(通過(guò)頁(yè)簽進(jìn)行內(nèi)容視圖切換的容器組件)等。其中,Swiper組件和Tabs組件在應(yīng)用程序開(kāi)發(fā)中對(duì)于指示器的使用引入較多,但是直接使用原生的Swiper組件和Tabs組件不適用于表現(xiàn)復(fù)雜的UI指示器交互變化。因此,我們針對(duì)Swiper組件和Tabs組件在指示器應(yīng)用方向做了一個(gè)簡(jiǎn)單的封裝,以CiecleIndicator三方組件的形式提供應(yīng)用程序依賴(lài)使用,從而提升了ArkUI開(kāi)發(fā)框架的UI界面之指示器風(fēng)格多樣化的能力。

CircleIndicator介紹

CircleIndicator組件UI效果展示

圓形指示器:

43bfd5b6-08f6-11ed-ba43-dac502259ad0.gif

長(zhǎng)條指示器:

43d86de2-08f6-11ed-ba43-dac502259ad0.gif

橫幅指示器:

440b5036-08f6-11ed-ba43-dac502259ad0.gif

三角指示器:

4442946a-08f6-11ed-ba43-dac502259ad0.gif

圖標(biāo)指示器:

4453fbba-08f6-11ed-ba43-dac502259ad0.gif

攜帶中央視圖的Tabs指示器:

446f79a8-08f6-11ed-ba43-dac502259ad0.gif

固定位置Tabs指示器:

44951fe6-08f6-11ed-ba43-dac502259ad0.gif

固定位置Tabs指示器(膠囊風(fēng)格):

44b9837c-08f6-11ed-ba43-dac502259ad0.gif

固定位置Tabs指示器(攜帶角標(biāo)):

44e57ac2-08f6-11ed-ba43-dac502259ad0.gif

可滑動(dòng)Tabs指示器:

4502913e-08f6-11ed-ba43-dac502259ad0.gif

可滑動(dòng)Tabs指示器(水滴滑塊):

453a41ec-08f6-11ed-ba43-dac502259ad0.gif

可滑動(dòng)Tabs指示器(首列固定):

4559933a-08f6-11ed-ba43-dac502259ad0.gif

titles指示器:

4589f840-08f6-11ed-ba43-dac502259ad0.gif

什么是CircleIndicator?

CircleIndicator顧名思義,它指的是圓形指示器。不過(guò)在我們OpenHarmony三方組件中的CircleIndicator組件不再是狹義的圓形指示器,而是將多種表現(xiàn)形式的指示器匯集為一體的歸一化指示器合集組件。

CircleIndicator的源碼實(shí)現(xiàn)

這里我們以CircleIndicator組件源碼中的TriangularIndicator.ets文件為源碼解析樣例對(duì)象展開(kāi)分析。首先創(chuàng)建TriangularIndicator.ets文件,使用命名空間建立TriangularIndicator初始化模型:
 
namespace TriangularIndicator {  export class Model {//設(shè)置指示器高度    mHeight: number = 18//設(shè)置指示器寬度    mWidth: number = lpx2px(720)//設(shè)置指示器背景色    mBackgroundColor: string//字段過(guò)多,此處進(jìn)行省略//各字段set與get方法,此處只以height字段為例    public getHeight(): number {      return this.mHeight    }    public setHeight(height: number): Model {      this.mHeight = height      return this    }    //觸摸事件攔截    onPageTouch: (event: TouchEvent, currentIndicator: number) => void    public notifyTouch(event: TouchEvent, currentIndex: number) {      this.onPageTouch(event, currentIndex)    }    //設(shè)置構(gòu)造器    private tabsController: TabsController        (tabsController: TabsController) {      this.tabsController = tabsController    }    //頁(yè)面切換監(jiān)聽(tīng)    indexChange: (itemIndex: number) => void    public setChangeListener(callback: (index: number) => void): Model{      this.indexChange = callback      return this    }}

將TriangularIndicator應(yīng)用組件化:
@Componentstruct TriangularIndicator {//獲取TriangularIndicator實(shí)例  @State model: TriangularIndicator.Model = new TriangularIndicator.Model(null)//初始化指示器當(dāng)前index  @Link @Watch("itemIndexChange") itemIndex: number//設(shè)置指示器總條數(shù)  @State count: number = 0//再分別實(shí)現(xiàn)itemIndexChange、aboutToAppear、onTouch、getOffset方法,此處實(shí)現(xiàn)不做展示//再在build方法里面描述UI結(jié)構(gòu)    build() {      Column() {        Rect({ width: this.model.mWidth, height:     this.model.mLineHeight }).fill(this.model.mLineColor)        Polygon()          .points(this.model.mReverse ?        [[px2vp(this.model.mWidth) / (this.count * 2) - this.model.mTriangleWidth / 2, this.model.mLineHeight - this.model.mYOffset],        [px2vp(this.model.mWidth) / (this.count * 2), this.model.mLineHeight + this.model.mTriangleHeight - this.model.mYOffset],        [px2vp(this.model.mWidth) / (this.count * 2) + this.model.mTriangleWidth / 2, this.model.mLineHeight - this.model.mYOffset]] :        [[px2vp(this.model.mWidth) / (this.count * 2) - this.model.mTriangleWidth / 2, -this.model.mYOffset],  [px2vp(this.model.mWidth) / (this.count * 2), -this.model.mTriangleHeight - this.model.mYOffset],        [px2vp(this.model.mWidth) / (this.count * 2) + this.model.mTriangleWidth / 2, -this.model.mYOffset]])          .offset(this.model.mStartInterpolator ?            { x: px2vp(this.model.mWidth) / this.count * (this.itemIndex -     this.model.mStartInterpolator.interpolate(Math.abs(this.model.offs    et / this.model.mWidth)) * Math.sign(this.model.offset)),              y: 0 } :            { x: px2vp(this.model.mWidth) / this.count * (this.itemIndex - this.model.offset / this.model.mWidth),              y: 0 })          .fill(this.model.mLineColor)          .height(this.model.mHeight)          .width(this.model.mWidth)      }.width('100%').height(this.model.mHeight)      .backgroundColor(this.model.mBackgroundColor)    }}
最后將TriangularIndicator暴露出來(lái)供外部引用:
export default TriangularIndicator

CircleIndicator實(shí)戰(zhàn)

創(chuàng)建項(xiàng)目

如圖所示,在DevEco Studio中新建CircleIndicator_Test項(xiàng)目,項(xiàng)目類(lèi)型選擇Application,語(yǔ)言選擇eTS,點(diǎn)擊Finish完成創(chuàng)建。

459baf4a-08f6-11ed-ba43-dac502259ad0.png

創(chuàng)建工程

添加依賴(lài)

成功創(chuàng)建項(xiàng)目后,接下來(lái)就是將CircleIndicator組件下載至項(xiàng)目中。請(qǐng)?jiān)谔砑右蕾?lài)之前參考如何安裝OpenHarmony npm包(https://gitee.com/openharmony-tpc/docs/blob/master/OpenHarmony_npm_usage.md)完成OpenHarmony npm環(huán)境配置。完成OpenHarmony npm環(huán)境配置之后,在DevEco Studio的底部導(dǎo)航欄,點(diǎn)擊“Terminal”(快捷鍵Alt+F12), 鍵入命令:npm install @ohos/circle-indicator --save并回車(chē),此時(shí)CircleIndicator組件會(huì)自動(dòng)下載至項(xiàng)目中。下載完成后工程根目錄下會(huì)生成node_modules/@ohos/CircleIndicator目錄。

編寫(xiě)邏輯代碼

提供多種Indicator,使用方法類(lèi)似,以TriangularIndicator為例

1.初始化:實(shí)例化TabsController和對(duì)應(yīng)的Indicator.Model 對(duì)象, 并添加number類(lèi)型成員以記錄當(dāng)前頁(yè)下標(biāo)


private controller: TabsController = new TabsController()@State model: TriangularIndicator.Model = new TriangularIndicator.Model(this.controller)@StateitemIndex:number=0
2.屬性設(shè)置:通過(guò)Model類(lèi)對(duì)象設(shè)置UI屬性來(lái)自定義所需風(fēng)格,也可以添加所需的回調(diào)
aboutToAppear() {  this.model    .setReverse(true)    .setLineHeight(4)    .setTriangleHeight(10)    .setLineColor("#e94220")    .setBackgroundColor("#eeeeee")    .setChangeListener((itemIndex) => {      console.info("change page to " + this.data[itemIndex])    })}
3.界面繪制:在Tabs組件旁放置Indicator組件,注意需要關(guān)閉原生的bar。并監(jiān)聽(tīng)Tabs組件的touch事件,通知給Model類(lèi),以統(tǒng)一處理滑動(dòng)邏輯
build() {  Column() {    TriangularIndicator({ itemIndex: $itemIndex, count: this.data.length, model: this.model })    Tabs({ index: this.itemIndex, controller: this.controller }) {      ……    }    .barWidth(0)    .onTouch((event: TouchEvent) => {      this.model.notifyTouch(event, this.itemIndex)    })  }.padding({ top: 40 })  .backgroundColor("#eeeeee")}
本期基于OpenHarmony API8的CircleIndicator組件1.0.3(https://gitee.com/openharmony-sig/CircleIndicator/tree/1.0.3)就為大家介紹到這,歡迎大家積極參與貢獻(xiàn)。了解更多三方組件動(dòng)態(tài),請(qǐng)關(guān)注三方組件資源匯總(https://gitee.com/openharmony-tpc/tpc_resource),更多優(yōu)秀的組件等你來(lái)發(fā)現(xiàn)!
審核編輯 :李倩


聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 源碼
    +關(guān)注

    關(guān)注

    8

    文章

    642

    瀏覽量

    29229
  • 應(yīng)用程序
    +關(guān)注

    關(guān)注

    37

    文章

    3271

    瀏覽量

    57727

原文標(biāo)題:CircleIndicator組件,使指示器風(fēng)格更加多樣化

文章出處:【微信號(hào):gh_e4f28cfa3159,微信公眾號(hào):OpenAtom OpenHarmony】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    SSM框架的源碼解析與理解

    SSM框架(Spring + Spring MVC + MyBatis)是一種在Java開(kāi)發(fā)中常用的輕量級(jí)企業(yè)級(jí)應(yīng)用框架。它通過(guò)整合Spring、Spring MVC和MyBatis三個(gè)框架,實(shí)現(xiàn)
    的頭像 發(fā)表于 12-17 09:20 ?269次閱讀

    源碼開(kāi)放 智能監(jiān)測(cè)電源管理教程寶典!

    源碼開(kāi)放,今天我們學(xué)習(xí)的是電源管理系統(tǒng)的核心功能模塊,手把手教你如何通過(guò)不同的技術(shù)手段實(shí)現(xiàn)有效的電源管理。
    的頭像 發(fā)表于 12-11 09:26 ?263次閱讀
    <b class='flag-5'>源碼</b>開(kāi)放  智能監(jiān)測(cè)電源管理教程寶典!

    ESP32 崩潰后調(diào)試信息定位到源碼方法

    arduino 通過(guò)調(diào)試信息定位出錯(cuò)源碼
    的頭像 發(fā)表于 08-27 14:29 ?915次閱讀

    UCGUI單片機(jī)源碼

    UCGUI單片機(jī)源碼
    發(fā)表于 07-04 17:11 ?1次下載

    LwIP協(xié)議棧源碼詳解—TCP/IP協(xié)議的實(shí)現(xiàn)

    電子發(fā)燒友網(wǎng)站提供《LwIP協(xié)議棧源碼詳解—TCP/IP協(xié)議的實(shí)現(xiàn).pdf》資料免費(fèi)下載
    發(fā)表于 07-03 11:22 ?3次下載

    UWB智能定位系統(tǒng)源碼 UWB三維可視化人員定位系統(tǒng)源碼

    UWB智能定位系統(tǒng)源碼 UWB三維可視化人員定位系統(tǒng)源碼 基于B/S架構(gòu)的軟件和嵌入式硬件都具有很好的擴(kuò)展性和兼容性,可以與其他系統(tǒng)接口(比如:圍界、AB門(mén)、高壓電網(wǎng)、報(bào)警、巡更、門(mén)禁、對(duì)講
    的頭像 發(fā)表于 06-21 09:45 ?526次閱讀
    UWB智能定位系統(tǒng)<b class='flag-5'>源碼</b> UWB三維可視化人員定位系統(tǒng)<b class='flag-5'>源碼</b>

    浙大博導(dǎo)開(kāi)源飛控planner源碼

    浙大博導(dǎo)開(kāi)源飛控planner源碼
    發(fā)表于 06-12 11:43 ?4次下載

    labview實(shí)例源碼之控壓取樣系統(tǒng)

    labview源碼,包含報(bào)表、曲線、通訊等
    發(fā)表于 06-06 11:23 ?1次下載

    什么是源碼?源碼有什么作用?源碼組件是什么?源碼可二次開(kāi)發(fā)嗎?

    源碼,也稱(chēng)為源程序,是指未編譯的按照一定的程序設(shè)計(jì)語(yǔ)言規(guī)范書(shū)寫(xiě)的文本文件,是一系列人類(lèi)可讀的計(jì)算機(jī)語(yǔ)言指令。
    的頭像 發(fā)表于 05-25 14:55 ?1.6w次閱讀
    什么是<b class='flag-5'>源碼</b>?<b class='flag-5'>源碼</b>有什么作用?<b class='flag-5'>源碼</b>組件是什么?<b class='flag-5'>源碼</b>可二次開(kāi)發(fā)嗎?

    HarmonyOS開(kāi)發(fā):【基于命令行(獲取源碼)】

    在Ubuntu環(huán)境下通過(guò)以下步驟獲取OpenHarmony源碼
    的頭像 發(fā)表于 04-25 22:08 ?405次閱讀
    HarmonyOS開(kāi)發(fā):【基于命令行(獲取<b class='flag-5'>源碼</b>)】

    OpenHarmony開(kāi)發(fā)學(xué)習(xí):【源碼下載和編譯】

    本文介紹了如何下載鴻蒙系統(tǒng)源碼,如何一次性配置可以編譯三個(gè)目標(biāo)平臺(tái)(`Hi3516`,`Hi3518`和`Hi3861`)的編譯環(huán)境,以及如何將源碼編譯為三個(gè)目標(biāo)平臺(tái)的二進(jìn)制文件。
    的頭像 發(fā)表于 04-14 09:36 ?944次閱讀
    OpenHarmony開(kāi)發(fā)學(xué)習(xí):【<b class='flag-5'>源碼</b>下載和編譯】

    基于Android13的AOSP源碼下載及編譯指南

    AOSP(Android Open Source Project)是Android操作系統(tǒng)的開(kāi)源項(xiàng)目,通過(guò)下載和編譯AOSP源碼,您可以獲得原始的Android系統(tǒng),并進(jìn)行定制和開(kāi)發(fā)。本教程將向您介紹如何下載AOSP源碼并進(jìn)行編譯的步驟。
    的頭像 發(fā)表于 01-17 09:49 ?3996次閱讀
    基于Android13的AOSP<b class='flag-5'>源碼</b>下載及編譯指南

    OneFlow Softmax算子源碼解讀之BlockSoftmax

    寫(xiě)在前面:筆者這段時(shí)間工作太忙,身心俱疲,博客停更了一段時(shí)間,現(xiàn)在重新?lián)炱饋?lái)。本文主要解讀 OneFlow 框架的第二種 Softmax 源碼實(shí)現(xiàn)細(xì)節(jié),即 block 級(jí)別的 Softmax。
    的頭像 發(fā)表于 01-08 09:26 ?719次閱讀
    OneFlow Softmax算子<b class='flag-5'>源碼</b>解讀之BlockSoftmax

    OneFlow Softmax算子源碼解讀之WarpSoftmax

    寫(xiě)在前面:近來(lái)筆者偶然間接觸了一個(gè)深度學(xué)習(xí)框架 OneFlow,所以這段時(shí)間主要在閱讀 OneFlow 框架的 cuda 源碼。官方源碼基于不同場(chǎng)景分三種方式實(shí)現(xiàn) Softmax,本文主要介紹其中一種的
    的頭像 發(fā)表于 01-08 09:24 ?866次閱讀
    OneFlow Softmax算子<b class='flag-5'>源碼</b>解讀之WarpSoftmax