HarmonyOS 页面嵌套滑动时卡顿

我们这边有部分页面是存在嵌套滑动的,页面结构有两种类型:

(1)外层List,内层List,且内层List通过sticky属性设置了吸顶;

(2)外层List,内层Tab,Tab的元素是List。这两种结构在外层List页面滚动即将切换内层List滚动时,都会出现卡顿一下,无法一气呵成地滚到底,麻烦帮忙看下是什么问题

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

示例参考如下:

@Entry
@Component
struct Index {

  private outerListScroller: ListScroller = new ListScroller();
  private innerListScroller: ListScroller = new ListScroller();
  private innerListScroller2: ListScroller = new ListScroller();
  private tabsController: TabsController = new TabsController();
  private topArr: number[] = Array(4).fill(1);
  private tabArr1: string[] = Array(20).fill("内层List第一个Tab的单元格");
  private tabArr2: string[] = Array(15).fill("内层List第二个Tab的单元格");

  build() {
    Column() {
      Text("我是标题区域") {

      }
      .backgroundColor(Color.Grey)
      .width('100%')
      .height(30)
      .textAlign(TextAlign.Center)

      List({scroller: this.outerListScroller}) {
        ForEach(this.topArr, (item: number) => {
          ListItem() {
            Text("我是外层List的单元格")
          }
          .width('100%')
          .height(300)
          .backgroundColor(Color.Brown)
          .margin({top: 10})
        })

        ListItem() {
          Stack({alignContent: Alignment.Top}) {
            Tabs({controller: this.tabsController}) {
              TabContent() {
                List({scroller: this.innerListScroller}) {
                  ForEach(this.tabArr1, (item: string) => {
                    ListItem() {
                      Text(item)
                        .width('80%')
                        .height(100)
                        .backgroundColor(Color.Orange)
                        .margin({top: 10})
                        .textAlign(TextAlign.Center)
                        .margin({left: '10%'})
                    }
                  })
                }
                .width('100%')
                .height('100%')
                .scrollBar(BarState.Off)
                .nestedScroll({
                  scrollForward: NestedScrollMode.PARENT_FIRST,
                  scrollBackward: NestedScrollMode.SELF_FIRST
                })
                .edgeEffect(EdgeEffect.None)
              }

              TabContent() {
                List({scroller: this.innerListScroller2}) {
                  ForEach(this.tabArr2, (item: string) => {
                    ListItem() {
                      Text(item)
                        .width('80%')
                        .height(60)
                        .backgroundColor(Color.Brown)
                        .margin({top: 10})
                        .textAlign(TextAlign.Center)
                        .margin({left: '10%'})
                    }
                  })
                }
                .width('100%')
                .height('100%')
                .scrollBar(BarState.Off)
                .nestedScroll({
                  scrollForward: NestedScrollMode.PARENT_FIRST,
                  scrollBackward: NestedScrollMode.SELF_FIRST
                })
                .edgeEffect(EdgeEffect.None)
              }
            }
            .barHeight(45)
            .barWidth(0)

            Row() {
              Text("点击第一个Tab")
                .width('50%')
                .height('100%')
                .onClick(() => {
                  this.tabsController.changeIndex(0);
                })
                .backgroundColor(Color.Yellow)
                .textAlign(TextAlign.Center)

              Text("点击第二个Tab")
                .width('50%')
                .height('100%')
                .onClick(() => {
                  this.tabsController.changeIndex(1);
                })
                .backgroundColor(Color.Pink)
                .textAlign(TextAlign.Center)
            }
            .width('100%')
            .height(45)
          }
        }

      }
      .onScrollFrameBegin((offset:number, state: ScrollState)=>{
        if(offset>0 && this.outerListScroller.isAtEnd()){
          this.innerListScroller.scrollBy(0,offset)
          this.innerListScroller2.scrollBy(0,offset)
          return {offsetRemain:0}
        }
        return {offsetRemain:offset}
      })
      .width('100%')
      .height('calc(100% - 30vp)')
      .edgeEffect(EdgeEffect.None)
      .scrollBar(BarState.Off)
    }
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS List嵌套waterflow滑动
456浏览 • 1回复 待解决
HarmonyOS 页面滑动
228浏览 • 1回复 待解决
Web嵌套滑动怎么办?
366浏览 • 1回复 待解决
HarmonyOS 横竖屏翻转
28浏览 • 1回复 待解决
HarmonyOS scroll嵌套list页面无法滑动
260浏览 • 1回复 待解决
HarmonyOS LazyForEach多层级数据性能
195浏览 • 1回复 待解决
HarmonyOS WebView加载H5
259浏览 • 1回复 待解决
关于启动慢问题首帧分析
585浏览 • 1回复 待解决
HarmonyOS 手机系统升级后ui变得
39浏览 • 1回复 待解决
自定义组件,怎么办啊?
479浏览 • 1回复 待解决