HarmonyOS 切换tabs的时候,该如何修改其他图片的背景图片

写了一个Tabs,然后当切换tabBar的时候,需要改正整个页面风格的背景图片,但是这样写

@Builder
tabLabel(title: string, targetIndex: number) {
  if(targetIndex==0){
    this.appResource =  $r('app.media.ic_left_arrow')
  }else if(targetIndex==1){
  }else if(targetIndex==2){
  }

会提示不允许这种语法,所以应该怎么来实现

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

可以参考此demo

@Entry
@Component
struct TabsExample {
  @State fontColor: string = '#182431'
  @State selectedFontColor: string = '#007DFF'
  @State currentIndex: number = 0
  private controller: TabsController = new TabsController()
  @State imageRecourse:Resource = $rawfile('B.jpg')
  @Builder tabBuilder(index: number, name: string) {
    Column() {
      Text(name)
        .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor)
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 17, bottom: 7 })
      Divider()
        .strokeWidth(2)
        .color('#007DFF')
        .opacity(this.currentIndex === index ? 1 : 0)
    }.width('100%')
  }

  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start, index: this.currentIndex, controller: this.controller }) {
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#00CB87')
        }.tabBar(this.tabBuilder(0, 'green'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#007DFF')
        }.tabBar(this.tabBuilder(1, 'blue'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#FFBF00')
        }.tabBar(this.tabBuilder(2, 'yellow'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#E67C92')
        }.tabBar(this.tabBuilder(3, 'pink'))
      }
      .vertical(false)
      .barMode(BarMode.Fixed)
      .barWidth(360)
      .barHeight(56)
      .animationDuration(400)
      .onChange((index: number) => {
        this.currentIndex = index
        console.log(this.currentIndex.toString())
        if(this.currentIndex == 1) {
          this.imageRecourse = $rawfile('C.jpg')
        } else if (this.currentIndex == 0) {
          this.imageRecourse =  $rawfile('B.jpg')
        }
      })
      .width(360)
      .height(296)
      .margin({ top: 52 })
      .backgroundColor('#F1F3F5')
      Image(this.imageRecourse).width('100px').height('100px')
      Button('更改').onClick(()=>{
        this.imageRecourse = $rawfile('C.jpg')
      })
    }.width('100%')
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS 背景图片如何填充满组件
501浏览 • 1回复 待解决
HarmonyOS 设置冷启动背景图
414浏览 • 1回复 待解决
HarmonyOS 如何背景图居中
26浏览 • 1回复 待解决
怎么修改PNG图片颜色?
570浏览 • 1回复 待解决
使用Counter实现图片切换
401浏览 • 1回复 待解决
HarmonyOS 启动页背景图适配
15浏览 • 1回复 待解决
如何禁止Tabs系统切换逻辑
2193浏览 • 0回复 待解决