HarmonyOS scroll和list滚动冲突

Scroll() {  
      Column() {  
        CommonTitleBar({  
          attribute: {  
            bg_color: $r('app.color.color_ffffff'),  
            close_text: '',  
            closeCallback: () => {  
              router.back()  
            },  
            title_text: '通讯录',  
            isVisibleMoreOrRightText: true,  
            isVisibleMore: true,  
            rightImage: $r('app.media.icon_mail_list_more'),  
            rightTextClick: () => {  
              router.pushUrl({  
                url: CommonConstants.INVITE_AND_APPLY  
              })  
            }  
          }  
        }).height(48)  
          .width('100%')  
        Divider().color($r('app.color.color_f5f5f5')).strokeWidth(5)  
          
        Column() {  
          Text('常用联系人')  
            .fontColor('#FF999999')  
            .fontSize(14)  
            .textAlign(TextAlign.Start)  
            .padding({  
              top: 16  
            })  
            .width('95%')  
          List() {  
            ForEach(this.recentContactsList, (recentContactsList: RecentContactsEntity, index: number) => {  
              ListItem() {  
                this.itemCell(recentContactsList, index)  
              }  
            }, (item: RecentContactsEntity) => JSON.stringify(item))  
          }  
          .padding({ bottom: 106, top: 10})  
        }  
        .width('95%')  
        .backgroundColor('#ffffff')  
        .borderRadius(6)  
        .margin({  
          top: 16  
        })  
  }.backgroundColor($r('app.color.color_f5f5f5'))  
      .width('100%')  
      .height('100%')

类似上述代码,scroll里嵌套list,怎么禁止list的滑动,只使用scroll的滑动。

HarmonyOS
2024-09-30 11:47:09
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

scroll嵌套list的时候,若List不设置宽高,则默认全部加载,不会滚动。demo如下:

@Entry  
@Component  
struct NestedScroll {  
  @State listPosition: number = 0; // 0代表滚动到List顶部,1代表中间值,2代表滚动到List底部。  
  private arr: number[] = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]  
  private scrollerForScroll: Scroller = new Scroller()  
  private scrollerForList: Scroller = new Scroller()  
  build() {  
    Flex() {  
      Scroll(this.scrollerForScroll) {  
        Column() {  
          Text("Scroll Area")  
            .width("100%")  
            .height("40%")  
            .backgroundColor(0X330000FF)  
            .fontSize(16)  
            .textAlign(TextAlign.Center)  
          List({ space: 20, scroller: this.scrollerForList }) {  
            ForEach(this.arr, (item: number) => {  
              ListItem() {  
                Text("ListItem" + item)  
                  .width("100%")  
                  .height("100%")  
                  .borderRadius(15)  
                  .fontSize(16)  
                  .textAlign(TextAlign.Center)  
                  .backgroundColor(Color.White)  
              }.width("100%").height(100)  
            }, (item: string) => item)  
          }  
          .width("100%")  
          Text("Scroll Area")  
            .width("100%")  
            .height("40%")  
            .backgroundColor(0X330000FF)  
            .fontSize(16)  
            .textAlign(TextAlign.Center)  
        }  
      }  
      .width("100%")  
      .height("100%")  
    }.width('100%').height('100%').backgroundColor(0xDCDCDC).padding(20)  
  }  
}
分享
微博
QQ
微信
回复
2024-09-30 17:05:37
相关问题
WebList嵌套手势冲突问题
884浏览 • 1回复 待解决
scrolllist的嵌套滑动
1295浏览 • 1回复 待解决
ArkTS UI的List集合List冲突的问题
178浏览 • 1回复 待解决
HarmonyOS Scroll组件滚动问题
300浏览 • 1回复 待解决
Scroll内Flex加宽高与滑动冲突
1984浏览 • 1回复 待解决
HarmonyOS scroll嵌套List不能整体滑动
228浏览 • 1回复 待解决
list 支持循环滚动吗?
2105浏览 • 1回复 待解决
HarmonyOS Grid拖动排序长按冲突
292浏览 • 1回复 待解决
如何实现scrolllist单边回弹效果
366浏览 • 1回复 待解决
refresh + scroll+list嵌套问题
245浏览 • 1回复 待解决
如何获取List组件滚动滚动的距离
2414浏览 • 1回复 待解决
Scroll初始时自动滚动一段距离
770浏览 • 1回复 待解决
list组件无法滚动到底部
1050浏览 • 1回复 待解决