鸿蒙应用的快捷入口
2024-08-18·HarmonyOS, Shortcut
快捷入口
鸿蒙应用提供了类似 Android/iOS 的长按 APP 快捷入口功能,通过配置文件实现。
配置步骤
- 在
resources/base/profile下新建shortcuts_config.json:
{
"shortcuts": [
{
"shortcutId": "search_id",
"label": "搜索",
"icon": "$media:aa_icon",
"wants": [
{
"bundleName": "com.ohos.demo",
"moduleName": "entry",
"abilityName": "DemoAbility",
"parameters": {
"testKey": "testValue"
}
}
]
}
]
}
- 在
module.json5中对对应 Ability 配置 metadata:
{
"module": {
"abilities": [
{
"name": "DemoAbility",
"metadata": [
{
"name": "ohos.ability.shortcuts",
"resource": "$profile:shortcuts_config"
}
]
}
]
}
}
图片设置
- 格式:png 或 webp
- 尺寸:1024x1024px
- 内容:带图标的透明前景层 + 背景图
#HarmonyOS#Shortcut