HarmonyOS Tabs 组件如何在尾部添加一个 image 组件

Tabs 组件如何在尾部添加一个 image 组件,image组件与 tabBar 并排,且 tabBar 数量太多超出屏幕时, image 组件不会被隐藏,永远展示在尾部示例见图片

HarmonyOS Tabs 组件如何在尾部添加一个 image 组件 -鸿蒙开发者社区

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
shlp

请参考以下demo:

@Entry
@Component
struct Index {
  @State tabArray: Array<number> = [0, 1, 2, 3, 4, 5, 6]
  private controller: TabsController = new TabsController()
  @State currentIndex: number = 0
  @State indicatorLeftMargin: number = 0
  @State indicatorWidth: number = 0

  @Builder
  Tab(tabName: string, tabItem: number, tabIndex: number) {
    Row({ space: 20 }) {
      Text(tabName).fontSize(18)
        .fontColor(tabItem === this.currentIndex ? Color.Red : Color.Black)
        .id(tabIndex.toString())
        .onAreaChange((oldValue: Area, newValue: Area) => {
          if (this.currentIndex === tabIndex && (this.indicatorLeftMargin === 0 || this.indicatorWidth === 0)) {
            if (newValue.position.x != undefined) {
              let positionX = Number.parseFloat(newValue.position.x.toString())
              this.indicatorLeftMargin = Number.isNaN(positionX) ? 0 : positionX
            }
            let width = Number.parseFloat(newValue.width.toString())
            this.indicatorWidth = Number.isNaN(width) ? 0 : width
          }
        })
    }
    .justifyContent(FlexAlign.Center)
    .constraintSize({ minWidth: 35 })
    .width(80)
    .height(35)
    .borderRadius({ topLeft: 10, topRight: 10 })
    .onClick(() => {
      this.controller.changeIndex(tabIndex)
      this.currentIndex = tabIndex
    })
  }

  build() {
    Column() {
      // 页签
      // Stack({ alignContent: Alignment.TopStart }) {
      Flex() {
        Scroll() {
          Row() {
            ForEach(this.tabArray, (item: number, index: number) => {
              this.Tab("页签 " + item, item, index)
            })
          }
          .justifyContent(FlexAlign.Start)
        }
        .align(Alignment.Start)
        .scrollable(ScrollDirection.Horizontal)
        .scrollBar(BarState.Off)
        .width('100%')

        Image($r('app.media.startIcon'))
          .width(60)
          .height(50)
          .borderRadius(5)
          .padding({ left: 5, bottom: 2 })
      }
      .width('100%')
    }
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
如何在Tabs中的tabBar,添加其他组件
621浏览 • 1回复 待解决
如何实现一个折叠组件
1020浏览 • 1回复 待解决
如何在自定义函数中创建一个UI组件
1838浏览 • 1回复 待解决
HarmonyOS 如何添加一个悬浮的View
30浏览 • 1回复 待解决
Web组件如何发起一个下载任务?
462浏览 • 1回复 待解决
如何指定一个组件的宽高比例?
307浏览 • 1回复 待解决
HarmonyOS 需要一个图片预览组件
315浏览 • 1回复 待解决
如何为图片添加一个模糊的效果?
484浏览 • 2回复 待解决
如何知道一个组件的显示和隐藏
631浏览 • 1回复 待解决
如何实现一个组件不停地旋转
2284浏览 • 1回复 待解决