HarmonyOS 详细内容见具体描述

具体代码:

@Entry
@Component
struct DDUserCenterPage {
  //tab的索引
  @State currentIndex: number = 0
  //tab控制器
  controller: TabsController = new TabsController()
  scrollScroller: Scroller = new Scroller()
  @State scrollOffset: number = 0
  build() {
    Column() {
      //标题
      Row() {
        Text('我是标题')
      }
      .height(60)
      .width('100%')
      .justifyContent(FlexAlign.Center)
      .backgroundColor(this.scrollOffset > 100 ? '#007edb' : 'rgba(0,0,0,0.1)')
      //.backgroundColor(this.scrollOffset > 100 ? '#007edb' : Color.Transparent)
      .animation({ duration: 300 })
      .zIndex(0)
      //滚动区域
      Scroll(this.scrollScroller) {
        //scroll内唯一根组件
        Column() {
          //scroll Area
          Text('scroll Area')
            .width('100%')
            .height(200)
            .textAlign(TextAlign.Center)
            .backgroundColor('#007edb')
          //tab
          Column() {
            //自定义tabbar
            Row({ space: 30 }) {
              ForEach(Array.from({ length: 2 }), (item: number, index: number) => {
                Text(`页签${index}`)
                  .height(50)
                  .fontColor(this.currentIndex == index ? '#f00' : '#000')
                  .onClick(() => {
                    this.currentIndex = index
                    this.controller.changeIndex(this.currentIndex)
                  })
                Text('|')
              })
            }
            .backgroundColor('#fff')
            .width('100%')
            .justifyContent(FlexAlign.Center)
            .position({ x: 0, y: 0 }) //tabbar绝对定位0,0
            .zIndex(1)
            //真正的tab
            Tabs({ controller: this.controller }) {
              TabContent() {
                Scroll() {
                  Column() {
                    Text('可能被tabbar遮住的内容')
                      .height(60)
                      .backgroundColor('#666')
                    Text('内容1')
                      .width('100%')
                      .fontSize(30)
                      .height(1500)
                      .textAlign(TextAlign.Center)
                      .backgroundColor('#999')
                  }
                }
                .nestedScroll({
                  //设置向上推时父子组件一起滚动
                  scrollForward: NestedScrollMode.PARALLEL,
                  //设置向下拉时父组件优先滚动
                  scrollBackward: NestedScrollMode.PARENT_FIRST
                })
              }
              TabContent() {
                Scroll() {
                  Text('内容2')
                    .width('100%')
                    .fontSize(30)
                    .height(1500)
                    .textAlign(TextAlign.Center)
                    .backgroundColor('#999')
                }
              }
            }
            .margin({ top: 50 }) //将被tabbar定位遮住的部分露出来
            .barHeight(0) //设置tabs自带tabbar的高为0
            .onChange(index => {
              this.currentIndex = index
            })
          }
        }
      }
      .width('100%')
      .layoutWeight(1)
      .onScroll(() => {
        this.scrollOffset = this.scrollScroller.currentOffset().yOffset
      })
    }
    .width('100%')
    .height('100%')
    .backgroundColor('#f6f6f6')
  }
}

1,Text('我是标题')这个组件怎么覆盖到 Text('scroll Area') 这个组件的上面,两者是重叠关系。

2,基于问题1的重叠效果,上划操作的时候‘页签0’和‘页签1’ 怎么悬停在Text('我是标题')的下面。

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

参考示例demo:

enum ScrollPosition { start, center, end }
@Entry
@Component
struct NestedScroll {
  @State listPosition: number = ScrollPosition.start; // 0代表滚动到List顶部,1代表中间值,2代表滚动到List底部。
  @State scrollPosition: number = ScrollPosition.start; // 0代表滚动到页面顶部,1代表中间值,2代表滚动到页面底部。
  @State showTitle: boolean = false;
  @State currentYOffset: number = 0;
  private arr: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
  private scrollerForScroll: Scroller = new Scroller();
  private scrollerForList: Scroller = new Scroller();
  controller: TextInputController = new TextInputController()
  build() {
    Stack({ alignContent: Alignment.Top }) {
      Scroll(this.scrollerForScroll) {
        Column() {
          Column() {
          }.width("100%").height("40%").backgroundColor(Color.Pink)
          Tabs({ barPosition: BarPosition.Start }) {
            TabContent() {
              List({ space: 10, scroller: this.scrollerForList }) {
                ForEach(this.arr, (item: number) => {
                  ListItem() {
                    Text("促销商品" + item)
                      .width("100%")
                      .height("100%")
                      .borderRadius(15)
                      .fontSize(24)
                      .textAlign(TextAlign.Center)
                      .backgroundColor(Color.White)
                  }
                  .width("100%").height(100)
                }, (item: string) => item)
              }
              .padding({ left: 10, right: 10 })
              .width("100%")
              .edgeEffect(EdgeEffect.None)
              .scrollBar(BarState.Off)
              .onReachStart(() => {
                this.listPosition = ScrollPosition.start
              })
              .onReachEnd(() => {
                this.listPosition = ScrollPosition.end
              })
              .onScrollFrameBegin((offset: number, state: ScrollState) => {
                // 滑动到列表中间时
                if (!((this.listPosition == ScrollPosition.start && offset < 0) ||
                  (this.listPosition == ScrollPosition.end && offset > 0))) {
                  this.listPosition = ScrollPosition.center
                }
                // 如果页面已滚动到底部,列表不在顶部或列表有正向偏移量
                if (this.scrollPosition == ScrollPosition.end &&
                  (this.listPosition != ScrollPosition.start || offset > 0)) {
                  return { offsetRemain: offset };
                } else {
                  this.scrollerForScroll.scrollBy(0, offset)
                  return { offsetRemain: 0 };
                }
              })
            }.tabBar('促销活动')
            TabContent() {
              List({ space: 10, scroller: this.scrollerForList }) {
                ForEach(this.arr, (item: number) => {
                  ListItem() {
                    Text("行程安排" + item)
                      .width("100%")
                      .height("100%")
                      .borderRadius(15)
                      .fontSize(24)
                      .textAlign(TextAlign.Center)
                      .backgroundColor(Color.White)
                  }
                  .width("100%").height(100)
                }, (item: string) => item)
              }
              .padding({ left: 10, right: 10 })
              .width("100%")
              .edgeEffect(EdgeEffect.None)
              .scrollBar(BarState.Off)
              .onReachStart(() => {
                this.listPosition = ScrollPosition.start
              })
              .onReachEnd(() => {
                this.listPosition = ScrollPosition.end
              })
              .onScrollFrameBegin((offset: number, state: ScrollState) => {
                // 滑动到列表中间时
                if (!((this.listPosition == ScrollPosition.start && offset < 0) ||
                  (this.listPosition == ScrollPosition.end && offset > 0))) {
                  this.listPosition = ScrollPosition.center
                }
                // 如果页面已滚动到底部,列表不在顶部或列表有正向偏移量
                if (this.scrollPosition == ScrollPosition.end &&
                  (this.listPosition != ScrollPosition.start || offset > 0)) {
                  return { offsetRemain: offset };
                } else {
                  this.scrollerForScroll.scrollBy(0, offset)
                  return { offsetRemain: 0 };
                }
              })
            }
            .tabBar('行程服务')
          }
          .vertical(false)
          .barMode(BarMode.Fixed)
          .barWidth(360)
          .barHeight(56)
          .width("100%")
          .height("92%")
          .backgroundColor('#F1F3F5')
        }
      }
      .scrollBar(BarState.Off)
      .width("100%")
      .height("100%")
      .onScroll((xOffset: number, yOffset: number) => {
        this.currentYOffset = this.scrollerForScroll.currentOffset().yOffset;
        // 非(页面在顶部或页面在底部),则页面在中间
        if (!((this.scrollPosition == ScrollPosition.start && yOffset < 0) ||
          (this.scrollPosition == ScrollPosition.end && yOffset > 0))) {
          this.scrollPosition = ScrollPosition.center
        }
      })
      .onScrollEdge((side: Edge) => {
        if (side == Edge.Top) {
          // 页面在顶部
          this.scrollPosition = ScrollPosition.start
        } else if (side == Edge.Bottom) {
          // 页面在底部
          this.scrollPosition = ScrollPosition.end
        }
      })
      .onScrollFrameBegin(offset => {
        if (this.scrollPosition == ScrollPosition.end) {
          return { offsetRemain: 0 };
        } else {
          return { offsetRemain: offset };
        }
      })
      Row() {
        Text('活动标题')
          .width('100%')
          .fontSize(24)
          .backgroundColor(Color.Orange)
          .height(60)
      }
      .justifyContent(FlexAlign.Center)
      .backgroundColor('#00ffffff')
      .width('100%')
      .height('8%')
    }
    .width('100%')
    .height('100%')
    .backgroundColor(0xDCDCDC)
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS @style详细介绍
569浏览 • 1回复 待解决
关于HarmonyOS包大小的描述
301浏览 • 1回复 待解决
HarmonyOS 有没有xml描述的Shape?
51浏览 • 1回复 待解决
HarmonyOS 混淆能力有详细的介绍吗
101浏览 • 1回复 待解决
HarmonyOS 发布企业内应用详细指引
29浏览 • 1回复 待解决
HarmonyOS 在非UI描述中观测变化
58浏览 • 1回复 待解决
HarmonyOS上面的NDK开发有无详细文档
4746浏览 • 2回复 待解决
动态申请权限能否添加描述
775浏览 • 1回复 待解决
如何查看编译的详细过程编辑
302浏览 • 1回复 待解决
hvigor构建过程是否有详细日志
981浏览 • 1回复 待解决
请问针对下面场景描述如何实现 ?
189浏览 • 1回复 待解决
崩溃信息中缺少详细的系统信息
875浏览 • 1回复 待解决
HarmonyOS 关于AOP具体使用方法
482浏览 • 1回复 待解决
HarmonyOS Length 如何转换为具体数值?
213浏览 • 1回复 待解决
如何对UI描述进行单元测试?
602浏览 • 1回复 待解决
napi_module结构体字段描述解析
2051浏览 • 1回复 待解决