您的位置:首页 > 文旅 > 旅游 > 【鸿蒙应用】List、ListItem和ListItemGroup组件

【鸿蒙应用】List、ListItem和ListItemGroup组件

2024/12/23 7:58:14 来源:https://blog.csdn.net/xuelian3015/article/details/142151152  浏览:    关键词:【鸿蒙应用】List、ListItem和ListItemGroup组件

List组件是一个列表组件,包含一系列相同宽度的列表,适合连续、多行呈现同类数据的,比如图片。

ListItem组件是用来展示列表具体项的 item ;ListItemGroup组件是用来展示列表 item 分组的,这两个组件必须是配合 List 组件来使用。

比如:

interface ItemType {title: string;projects: string[]
}@Entry
@Component
struct ToDoList {@State title: string = '';private timetableListItemGroup: ItemType[] = [{title: "星期一",projects: ["语文", "数学"]}, {title: "星期二",projects: ["语文", "数学"]}, {title: "星期三",projects: ["语文", "数学"]}, {title: "星期四",projects: ["语文", "数学"]}, {title: "星期五",projects: ["语文", "数学"]},];onPageShow() {console.info('Index onPageShow');}onPageHide() {console.info('Index onPageHide');}onBackPress() {console.info('Index onBackPress');return true // 返回true表示页面自己处理返回逻辑,不进行页面路由;返回false表示使用默认的路由返回逻辑,不设置返回值按照false处理}aboutToAppear() {console.info('MyComponent aboutToAppear');}onDidBuild() {console.info('MyComponent onDidBuild');}aboutToDisappear() {console.info('MyComponent aboutToDisappear');}build() {Column() {List({ space: 2 }) {ForEach(this.timetableListItemGroup, (item: ItemType) => {ListItemGroup() {ForEach(item.projects, (project: string) => {ListItem() {Text(project).width("100%").height("30").fontSize(20).textAlign(TextAlign.Center)}}, (item:string) => item)}.borderRadius(10).divider({strokeWidth:1,color:0xDCDCDC}).margin({bottom:10}).border({width:1,color:"blue"})})}}.margin({left: 10,top: 10,right:10})}
}

组件效果如图:
在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com