139 Star 1.3K Fork 1.5K

OpenHarmony/applications_app_samples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.gitee
code
BasicFeature
DataMock
DocsSample
LaunguageBaseClassLibrary
Performance
Project
Solutions
SuperFeature
SystemFeature
Ability/AbilityFeatureSystem
ApplicationModels
AutoFill
Connectivity
DataManagement/CrossAppDataShare
DeviceManagement
DeviceUsageStatistics/DeviceUsageStatistics
DistributedAppDev
FileManagement
FullScreenStart
FullScreenStart
AppScope
entry
hvigor
screenshots
.gitignore
README_zh.md
build-profile.json5
hvigorfile.ts
oh-package.json5
ohosTest.md
FullScreenStart_Service
IDL/AbilityConnectServiceExtension
Internationalnation/International
Media
Notification
ResourceAllocation/ApplicationThemeSwitch
Security
TaskManagement
Telephony
UIExtensionSamples
Widget
WindowManagement
UI
.gitattributes
.gitignore
CodeCommitChecklist.md
LICENSE
OAT.xml
README.md
README_zh.md
SampleReadTemplate.md
changelog.md
ohosTestTemplate.md
releasenote.md
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

全屏启动原子化服务

介绍

本示例使用@ohos.app.ability.EmbeddableUIAbility,@ohos.arkui.advanced.FullScreenLaunchComponentUIAbilityContext.openAtomicServiceUIExtensionContext.openAtomicService等接口,展示了如何全屏启动原子化服务。

效果预览

主页 原子化服务页面

使用说明:

1.安装本应用和原子化服务应用,点击FullScreenStart图标启动FullScreenStart应用。

2.进入应用显示页面,点击页面中"全屏启动原子化服务组件"按钮,通过嵌入式启动原子化服务并跳转到原子化服务应用的计算器页面。

3.关闭原子化服务页面重新进入启动页面,点击"UIAbility启动原子化服务"按钮,通过跳出式启动原子化服务并跳转到原子化服务应用的计算器页面。

4.关闭原子化服务页面重新进入启动页面,点击"UIExtension启动原子化服务"按钮,通过跳出式启动原子化服务并跳转到原子化服务应用的计算器页面。

工程目录

entry/src/main/ets/
├──entryability
│   └──EntryAbility.ets
├──pages
│   ├──ExtensionIndex.ets            // UIExtenionAbility页面
│   └──Index.ets                     // 启动原子化服务页面
└──uiextensionability
    └──UIExtensionAbility.ets        // UIExtenionAbility实现类

具体实现

  • 本示例分为3个分支:
    • FullScreenLaunchComponent (全屏启动原子化服务组件)

      • 调用FullScreenLaunchComponent全屏启动原子化服务组件,当被拉起方授权使用方可以嵌入式运行原子化服务时,使用方全屏嵌入式运行原子化服务。
      • 源码链接:Index.ets
      • 参考接口:@ohos.arkui.advanced.FullScreenLaunchComponent
    • UIAbility全屏启动原子化服务

    • UIExtension全屏启动原子化服务

相关权限

不涉及。

依赖

本示例依赖原子化服务,需要安装FullScreenStart_Service原子化服务应用。

约束与限制

1.本示例仅支持标准系统上运行,支持设备:RK3568;

2.本示例为Stage模型,支持API12版本SDK,版本号:5.0.0.29;

3.本示例涉及使用系统接口:UIExtensionComponent,需要手动替换Full SDK才能编译通过;

4.本示例需要使用DevEco Studio NEXT Developer Beta1(Build Version: 5.0.3.403, built on June 20, 2024)及以上版本才可编译运行;

5.本示例配置权限为system_basic级别及以上;

6.本示例涉及HarmonyOS特性,需要开发者在AppGallery Connect内创建原子化服务应用并替换工程内Index_appIdExtensionIndex_appId。具体创建方式参考元服务开发准备

下载

如需单独下载本工程,执行如下命令:

git init
git config core.sparsecheckout true
echo code/SystemFeature/FullScreenStart/FullScreenStart/ > .git/info/sparse-checkout
git remote add origin https://gitee.com/openharmony/applications_app_samples.git
git pull origin master
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/applications_app_samples.git
git@gitee.com:openharmony/applications_app_samples.git
openharmony
applications_app_samples
applications_app_samples
master

搜索帮助