HarmonyOS List组件contentStartOffset属性不生效

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

可以使用替代方案在List外面要嵌套Row组件,不要直接把List做根组件。示例参考如下:

@Entry
@Component
struct ListLanesExample {
  @State arr: string[] = ["0", "1", "2", "3", "4", "5", "6", "7", "8",]
  @State alignListItem: ListItemAlign = ListItemAlign.Center
  build() {
    Row() {
      List({ space: 8 }) {
        ForEach(this.arr, (item: string) => {
          ListItem() {
            Text('' + item)
              .width(80)
              .height(30)
              .fontSize(16)
              .textAlign(TextAlign.Center)
              .borderRadius(10)
              .backgroundColor(0xFFFFFF)
          }
          .border({ width: 2, color: Color.Green })
        }, (item: string) => item)
      }
      .height('100%')
      .layoutWeight(1)
      .listDirection(Axis.Horizontal)
      .border({ width: 3, color: Color.Red })
      .alignListItem(this.alignListItem)
      .scrollBar(BarState.Off)
      .contentStartOffset(20)
    }
    .height(64)
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
List组件的initialIndex属性设置生效
2284浏览 • 1回复 待解决
用数组变量控制组件属性生效
1785浏览 • 1回复 待解决
通过WindowProperties设置属性生效
2181浏览 • 1回复 待解决
textfield的截断属性生效
2882浏览 • 1回复 待解决
HarmonyOS Web组件borderRadius生效
27浏览 • 1回复 待解决
容器组件onVisibleAreaChange生效
1903浏览 • 1回复 待解决
HarmonyOS 组件切换深色模式生效
432浏览 • 1回复 待解决
在嵌套组件中Scroll生效
2183浏览 • 1回复 待解决
HarmonyOS margin生效
656浏览 • 1回复 待解决
Web组件的onKeyEvent键盘事件生效
2033浏览 • 1回复 待解决
HarmonyOS expandSafeArea生效
339浏览 • 1回复 待解决