更新使用说明和移动代码

This commit is contained in:
DevWiki 2024-04-23 14:50:19 +08:00
parent aea18f9da9
commit 3556128102
2 changed files with 16 additions and 4 deletions

View File

@ -4,6 +4,8 @@
- app: 主入口模块
- common_ui : 通用UI动态共享库模块
- base: 最底层的依赖库, 包含最通用的代码封装.
- cppLib: C++项目, 编译so提供给native_lib模块使用
- native_lib: 包含C++ 的 shared 模块
## app模块
@ -11,17 +13,27 @@
- [web功能](app/src/main/ets/pages/web)
- [布局学习](app/src/main/ets/pages/layout)
- [线性布局](app/src/main/ets/pages/layout/LinearLayoutPage.ets)
- [动画](app/src/main/ets/pages/animation)
- [多媒体](app/src/main/ets/pages/media)
- [AVPlayer](app/src/main/ets/pages/media/AVPlayerPage.ets)
- [照片选择](app/src/main/ets/pages/media/PhotoPage.ets)
## common ui模块
包含的组件有:
- 封装[WebView](common_ui/src/main/ets/component/web/WebView.ets)
- 封装: [WebView](common_ui/src/main/ets/component/web/WebView.ets)
- 自定标题栏: [TitleBar](common_ui/src/main/ets/component/TitleBar.ets)
- 公用资源调用类: [CommonRes](common_ui/src/main/ets/utils/CommonRes.ets)
## base 模块
事件相关:
- 事件发射器 [Emitter](base/src/main/ets/event/Emitter.ets)
- 事件发射器: [Emitter](base/src/main/ets/event/Emitter.ets)
工具类:
- 公用资源调用类[CommonRes](common_ui/src/main/ets/utils/CommonRes.ets)
- 屏幕相关[ScreenUtil](base/src/main/ets/utils/ScreenUtil.ets)
- 屏幕相关: [ScreenUtil](base/src/main/ets/utils/ScreenUtil.ets)
- 日志工具: [Log](base/src/main/ets/utils/Log.ets)
- 持久化存储: [BaseLocalStorage](base/src/main/ets/utils/BaseLocalStorage.ets)