Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
2651f351
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
2651f351
编写于
3月 21, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 21, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2218 新增卡片开发指南
Merge pull request !2218 from yangzk/rk_dev
上级
0088a492
81d4b437
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
266 addition
and
2 deletion
+266
-2
zh-cn/application-dev/ability/fa-formability.md
zh-cn/application-dev/ability/fa-formability.md
+266
-2
zh-cn/application-dev/ability/figures/fa-form-example.png
zh-cn/application-dev/ability/figures/fa-form-example.png
+0
-0
未找到文件。
zh-cn/application-dev/ability/fa-formability.md
浏览文件 @
2651f351
# FormAbility开发指导
# FormAbility开发指导
## 卡片概述
卡片是一种界面展示形式,可以将应用的重要信息或操作前置到卡片,以达到服务直达,减少体验层级的目的。
卡片常用于嵌入到其他应用(当前只支持系统应用)中作为其界面的一部分显示,并支持拉起页面,发送消息等基础的交互功能。卡片使用方负责显示卡片。
卡片的基本概念:
-
卡片提供方
提供卡片显示内容原子化服务,控制卡片的显示内容、控件布局以及控件点击事件。
-
卡片使用方
显示卡片内容的宿主应用,控制卡片在宿主中展示的位置。
-
卡片管理服务
用于管理系统中所添加卡片的常驻代理服务,包括卡片对象的管理与使用,以及卡片周期性刷新等。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 卡片使用方和提供方不要求常驻运行,在需要添加/删除/请求更新卡片时,卡片管理服务会拉起卡片提供方获取卡片信息。
开发者仅需作为卡片提供方进行卡片内容的开发,卡片使用方和卡片管理服务由系统自动处理。
卡片提供方控制卡片实际显示的内容、控件布局以及点击事件。
## FormAbility基本概念
基于Form模板的Ability(以下简称“Form”)主要用于控制其自身卡片实际显示的内容及点击事件等。
## 创建Form
1.
Form中相关生命周期说明如下:
-
onCreate
卡片提供方接收创建卡片通知接口。
-
onCastToNormal
卡片提供方接收临时卡片转常态卡片通知接口。
-
onUpdate
卡片提供方接收更新卡片通知接口。
-
onDestroy
卡片提供方接收删除卡片通知接口。
-
onEvent
卡片提供方接收删除卡片通知接口。
-
onVisibilityChange
卡片提供方接收卡片可见性通知接口。
-
onAcquireFormState
卡片提供方接收查询卡片状态通知接口。默认返回卡片初始状态。
创建Form的代码示例如下:
```
javascript
import
formInfo
from
'
@ohos.application.formInfo
'
import
formBindingData
from
'
@ohos.application.formBindingData
'
export
default
{
onCreate
(
want
)
{
console
.
log
(
'
FormAbility onCreate
'
);
// 由开发人员自行实现,将创建的卡片信息持久化,以便在下次获取/更新该卡片实例时进行使用
let
obj
=
{
"
title
"
:
"
titleOnCreate
"
,
"
detail
"
:
"
detailOnCreate
"
};
let
formData
=
formBindingData
.
createFormBindingData
(
obj
);
return
formData
;
},
onCastToNormal
(
formId
)
{
// 使用方将临时卡片转换为常态卡片触发,提供方需要做相应的处理
console
.
log
(
'
FormAbility onCastToNormal
'
);
},
onUpdate
(
formId
)
{
// 若卡片支持定时更新/定点更新/卡片使用方主动请求更新功能,则提供方需要覆写该方法以支持数据更新
console
.
log
(
'
FormAbility onUpdate
'
);
},
onVisibilityChange
(
newStatus
)
{
// 使用方发起可见或者不可见通知触发,提供方需要做相应的处理
console
.
log
(
'
FormAbility onVisibilityChange
'
);
},
onEvent
(
formId
,
message
)
{
// 若卡片支持触发事件,则需要覆写该方法并实现对事件的触发
console
.
log
(
'
FormAbility onEvent
'
);
},
onDestroy
(
formId
)
{
// 删除卡片实例数据
console
.
log
(
'
FormAbility onDestroy
'
);
},
onAcquireFormState
(
want
)
{
console
.
log
(
'
FormAbility onAcquireFormState
'
);
return
formInfo
.
FormState
.
READY
;
},
}
```
2.
Form配置
Form需要在应用配置文件config.json中进行配置。
-
js模块,用于对应卡片的js相关资源,内部字段结构说明:
| 属性名称 | 含义 | 数据类型 | 是否可缺省 |
| -------- | ------------------------------------------------------------ | -------- | ------------------------ |
| name | 表示JS Component的名字。该标签不可缺省,默认值为default。 | 字符串 | 否 |
| pages | 表示JS Component的页面用于列举JS Component中每个页面的路由信息[页面路径+页面名称]。该标签不可缺省,取值为数组,数组第一个元素代表JS FA首页。 | 数组 | 否 |
| window | 用于定义与显示窗口相关的配置。该标签仅适用于手机、平板、智慧屏、车机、智能穿戴。 | 对象 | 可缺省 |
| type | 表示JS应用的类型。取值范围如下:
<br
/>
normal:标识该JS Component为应用实例。
<br
/>
form:标识该JS Component为卡片实例。 | 字符串 | 可缺省,缺省值为“normal” |
| mode | 定义JS组件的开发模式。 | 对象 | 可缺省,缺省值为空 |
配置示例如下:
```
json
"js"
:
[{
"name"
:
"widget"
,
"pages"
:
[
"pages/index/index"
],
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
true
},
"type"
:
"form"
}]
```
-
abilities模块,用于对应卡片的FormAbility,内部字段结构说明:
| 属性名称 | 含义 | 数据类型 | 是否可缺省 |
| ------------------- | ------------------------------------------------------------ | ---------- | ------------------------ |
| name | 表示卡片的类名。字符串最大长度为127字节。 | 字符串 | 否 |
| description | 表示卡片的描述。取值可以是描述性内容,也可以是对描述性内容的资源索引,以支持多语言。字符串最大长度为255字节。 | 字符串 | 可缺省,缺省为空。 |
| isDefault | 表示该卡片是否为默认卡片,每个Ability有且只有一个默认卡片。
<br
/>
true:默认卡片。
<br
/>
false:非默认卡片。 | 布尔值 | 否 |
| type | 表示卡片的类型。取值范围如下:
<br
/>
Java:Java卡片。
<br
/>
JS:JS卡片。 | 字符串 | 否 |
| colorMode | 表示卡片的主题样式,取值范围如下:
<br
/>
auto:自适应。
<br
/>
dark:深色主题。
<br
/>
light:浅色主题。 | 字符串 | 可缺省,缺省值为“auto”。 |
| supportDimensions | 表示卡片支持的外观规格,取值范围:
<br
/>
1
* 2:表示1行2列的二宫格。<br />2 *
2:表示2行2列的四宫格。
<br
/>
2
* 4:表示2行4列的八宫格。<br />4 *
4:表示4行4列的十六宫格。 | 字符串数组 | 否 |
| defaultDimension | 表示卡片的默认外观规格,取值必须在该卡片supportDimensions配置的列表中。 | 字符串 | 否 |
| landscapeLayouts | 表示卡片外观规格对应的横向布局文件,与supportDimensions中的规格一一对应。仅当卡片类型为Java卡片时,需要配置该标签。 | 字符串数组 | 否 |
| portraitLayouts | 表示卡片外观规格对应的竖向布局文件,与supportDimensions中的规格一一对应。仅当卡片类型为Java卡片时,需要配置该标签。 | 字符串数组 | 否 |
| updateEnabled | 表示卡片是否支持周期性刷新,取值范围:
<br
/>
true:表示支持周期性刷新,可以在定时刷新(updateDuration)和定点刷新(scheduledUpdateTime)两种方式任选其一,优先选择定时刷新。
<br
/>
false:表示不支持周期性刷新。 | 布尔类型 | 否 |
| scheduledUpdateTime | 表示卡片的定点刷新的时刻,采用24小时制,精确到分钟。 | 字符串 | 可缺省,缺省值为“0:0”。 |
| updateDuration | 表示卡片定时刷新的更新周期,单位为30分钟,取值为自然数。
<br
/>
当取值为0时,表示该参数不生效。
<br
/>
当取值为正整数N时,表示刷新周期为30
*
N分钟。 | 数值 | 可缺省,缺省值为“0”。 |
| formConfigAbility | 表示用于调整卡片的设施或活动的名称。 | 字符串 | 可缺省,缺省值为空。 |
| formVisibleNotify | 标识是否允许卡片使用卡片可见性通知 | 字符串 | 可缺省,缺省值为空。 |
| jsComponentName | 表示JS卡片的Component名称。字符串最大长度为127字节。仅当卡片类型为JS卡片时,需要配置该标签。 | 字符串 | 否 |
| metaData | 表示卡片的自定义信息,包含customizeData数组标签。 | 对象 | 可缺省,缺省值为空。 |
| customizeData | 表示自定义的卡片信息。 | 对象数组 | 可缺省,缺省值为空。 |
配置示例如下:
```
json
"abilities"
:
[{
"name"
:
"FormAbility"
,
"description"
:
"This is a FormAbility"
,
"formsEnabled"
:
true
,
"icon"
:
"$media:icon"
,
"label"
:
"$string:form_FormAbility_label"
,
"srcPath"
:
"FormAbility"
,
"type"
:
"service"
,
"forms"
:
[{
"colorMode"
:
"auto"
,
"defaultDimension"
:
"2*2"
,
"description"
:
"This is a service widget."
,
"formVisibleNotify"
:
true
,
"isDefault"
:
true
,
"jsComponentName"
:
"widget"
,
"name"
:
"widget"
,
"scheduledUpdateTime"
:
"10:30"
,
"supportDimensions"
:
[
"2*2"
],
"type"
:
"JS"
,
"updateDuration"
:
1
,
"updateEnabled"
:
true
}]
}]
```
## 卡片信息的持久化
因大部分卡片提供方都不是常驻服务,只有在需要使用时才会被拉起获取卡片信息,且卡片管理服务支持对卡片进行多实例管理,卡片ID对应实例ID,因此若卡片提供方支持对卡片数据进行配置,则需要对卡片的业务数据按照卡片ID进行持久化管理,以便在后续获取、更新以及拉起时能获取到正确的卡片业务数据。且需要适配onDestroy卡片删除通知接口,在其中实现卡片实例数据的删除。
常态卡片:卡片使用方会持久化的卡片;
临时卡片:卡片使用方不会持久化的卡片;
需要注意的是,卡片使用方在请求卡片时传递给提供方应用的Want数据中存在临时标记字段,表示此次请求的卡片是否为临时卡片,由于临时卡片的数据具有非持久化的特殊性,某些场景比如卡片服务框架死亡重启,此时临时卡片数据在卡片管理服务中已经删除,且对应的卡片ID不会通知到提供方,所以卡片提供方需要自己负责清理长时间未删除的临时卡片数据。同时对应的卡片使用方可能会将之前请求的临时卡片转换为常态卡片。如果转换成功,卡片提供方也需要对对应的临时卡片ID进行处理,把卡片提供方记录的临时卡片数据转换为常态卡片数据,防止提供方在清理长时间未删除的临时卡片时,把已经转换为常态卡片的临时卡片信息删除,导致卡片信息丢失。
## 开发卡片页面
开发者可以使用hml+css+json开发JS卡片页面:
-
hml:
```
html
<div
class=
"container"
>
<stack>
<div
class=
"container-img"
>
<image
src=
"/common/widget.png"
class=
"bg-img"
></image>
</div>
<div
class=
"container-inner"
>
<text
class=
"title"
>
{{title}}
</text>
<text
class=
"detail_text"
onclick=
"routerEvent"
>
{{detail}}
</text>
</div>
</stack>
</div>
```
-
css:
```
css
.container
{
flex-direction
:
column
;
justify-content
:
center
;
align-items
:
center
;
}
.bg-img
{
flex-shrink
:
0
;
height
:
100%
;
}
.container-inner
{
flex-direction
:
column
;
justify-content
:
flex-end
;
align-items
:
flex-start
;
height
:
100%
;
width
:
100%
;
padding
:
12px
;
}
.title
{
font-size
:
19px
;
font-weight
:
bold
;
color
:
white
;
text-overflow
:
ellipsis
;
max-lines
:
1
;
}
.detail_text
{
font-size
:
16px
;
color
:
white
;
opacity
:
0.66
;
text-overflow
:
ellipsis
;
max-lines
:
1
;
margin-top
:
6px
;
}
```
-
json:
```
json
{
"data"
:
{
"title"
:
"TitleDefault"
,
"detail"
:
"TextDefault"
},
"actions"
:
{
"routerEvent"
:
{
"action"
:
"router"
,
"abilityName"
:
"com.example.MyApplication.hmservice.FormAbility"
,
"params"
:
{
"message"
:
"add detail"
}
}
}
}
```
最终可以得到,如下卡片:
![
fa-form-example
](
figures/fa-form-example.png
)
zh-cn/application-dev/ability/figures/fa-form-example.png
0 → 100644
浏览文件 @
2651f351
7.5 KB
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录