电子说
本示例集合语言基础类库的各个子模块,展示了各个模块的基础功能,包含:
使用说明
LanguageBaseClassLibrary
├── AppScope
│ └── app.json5 //APP信息配置文件
├── entry/src/main //语言基础类库应用首页
│ ├── ets
│ │ ├── entryability
│ │ ├── pages
│ │ │ ├── Index.ets //主页入口
│ │ │ ├── AddInformationView.ets //添加联系人页面
│ │ │ ├── AddKeyValuePairView.ets //添加Key/Value页面
│ │ │ ├── AddStringView.ets //添加String页面
│ │ │ ├── compnents
│ │ │ │ └── Capabilities.ets //根据点击的菜单,展示对应的子界面
│ └── module.json5
│
├── common/src/main //公共组件及工具类
│ ├── ets
│ │ ├── components
│ │ │ └── CustomDataSource.ets //自定义DataSource,LazyForEach时使用
│ │ ├── util
│ │ │ ├── Logger.ets //日志工具类
│ │ │ └── ResourceUtil.ets //资源管理工具类
│ └── module.json5
│
├── menuitems/src/main //菜单
│ ├── ets
│ │ ├── Index.ets //对外提供的接口列表
│ │ ├── menulist //菜单组件
│ │ │ └── MenuList.ets
│ │ ├── components //菜单相关自定义组件
│ └── module.json5
│
├── capabilities/src/main //功能集
│ ├── ets
│ │ ├── capabilities //各个子模块功能组件
│ │ ├── components //子模块相关组件
│ │ │ ├── arraylistcomponents //arraylist相关组件
│ │ │ ├── dequecomponents //deque相关组件
│ │ │ ├── hashmapcomponents //hashmap相关组件
│ │ │ ├── hashsetcomponents //hashset相关组件
│ │ │ ├── lightweightmapcomponents //lightweightmap相关组件
│ │ │ ├── lightweightsetcomponents //lightweightset相关组件
│ │ │ ├── linkedlistcomponents //linkedlist相关组件
│ │ │ ├── listcomponents //list相关组件
│ │ │ ├── plainarraycomponents //plainarray相关组件
│ │ │ ├── queuecomponents //queue相关组件
│ │ │ ├── stackcomponents //stack相关组件
│ │ │ ├── treemapcomponents //treemap相关组件
│ │ │ ├── treesetcomponents //treeset相关组件
│ │ │ ├── utilcomponents //util相关组件
│ │ │ ├── vectorcomponents //vector相关组件
│ │ │ ├── ColumnOperation.ets //展示一列功能按钮的组件
│ │ │ ├── DeleteView.ets //删除按钮的组件
│ │ │ ├── GridOperation.ets //根据窗口大小展示不同列的功能按钮的组件
│ │ │ ├── InformationItemView.ets //联系人Item的组件
│ │ │ ├── KeyValueItemView.ets //Key/Value Item的组件
│ │ │ └── ValueItemView.ets //Value Item的组件
│ │ ├── model //相关数据模型
│ │ ├── utils //相关工具类
│ │ └── Constant.ts //EmitterId
│ └── module.json5
审核编辑 黄宇
全部0条评论
快来发表一下你的评论吧 !