HarmonyOS 鸿蒙Next 长按桌面服务卡片编辑功能
HarmonyOS 鸿蒙Next 长按桌面服务卡片编辑功能
新增TestAbility和对应的Test页面,
1、在src/main/resources/base/profile/main_pages.json中添加对应编辑页面Test。
// src/main/resources/base/profile/main_pages.json
{ "src": [ "pages/Index", "pages/Test" ] }
2、在src/main/module.json5的abilities属性中新增TestAbility
{
"name": "TestAbility",
"srcEntry": "./ets/entryability/TestAbility.ets",
"description": "$string:EntryAbility_desc",
"icon": "$media:layered_image",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:startIcon",
"startWindowBackground": "$color:start_window_background",
"exported": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
]
}
3、在src/main/resources/base/profile/form_config.json中添加formConfigAbility属性,值为ability://TestAbility
{
"forms": [
{
"name": "widget",
"displayName": "$string:widget_display_name",
"description": "$string:widget_desc",
"src": "./ets/widget/pages/WidgetCard.ets",
"uiSyntax": "arkts",
"window": {
"designWidth": 720,
"autoDesignWidth": true
},
"formConfigAbility": "ability://TestAbility",
"colorMode": "auto",
"isDynamic": false,
"isDefault": true,
"updateEnabled": true,
"scheduledUpdateTime": "10:30",
"updateDuration": 1,
"defaultDimension": "2*2",
"supportDimensions": [
"2*2"
]
}
]
}
这样就能使添加到桌面的卡片长按时出现‘编辑’按钮,点击进入对应的编辑页面
更多关于HarmonyOS 鸿蒙Next 长按桌面服务卡片编辑功能的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
在HarmonyOS 鸿蒙Next系统中,长按桌面服务卡片以进入编辑功能的具体操作步骤如下:
-
触发编辑模式:用户需在桌面环境下,对目标服务卡片进行长按操作。通常,这个过程需要持续约2秒钟,直至卡片边缘出现轻微震动或动画效果,以及卡片周围弹出操作菜单或进入可拖动状态,标志着编辑模式的成功启动。
-
编辑选项展示:进入编辑模式后,卡片周围会显示一系列操作选项,包括但不限于“编辑”、“移除”、“调整大小”等。用户可通过滑动手指或点击屏幕上的相应图标来选择所需操作。
-
执行编辑:选择“编辑”选项后,系统将提供进一步的编辑界面,允许用户自定义卡片内容、样式或布局。在此界面,用户可根据个人喜好进行个性化设置。
-
保存更改:完成编辑后,用户需点击“保存”或“确定”按钮,以应用更改并退出编辑模式。此时,卡片将按照用户设定的新样式展示在桌面上。
如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html。