Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
04787304
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看板
未验证
提交
04787304
编写于
5月 25, 2022
作者:
O
openharmony_ci
提交者:
Gitee
5月 25, 2022
浏览文件
操作
浏览文件
下载
差异文件
!4322 提交js-components-basic-xcomponent.md
Merge pull request !4322 from zzzsilenc/master
上级
1da4b231
cb4034bb
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
74 addition
and
1 deletion
+74
-1
zh-cn/application-dev/reference/arkui-js/Readme-CN.md
zh-cn/application-dev/reference/arkui-js/Readme-CN.md
+1
-0
zh-cn/application-dev/reference/arkui-js/js-components-basic-xcomponent.md
...-dev/reference/arkui-js/js-components-basic-xcomponent.md
+72
-0
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/arkui-js/Readme-CN.md
浏览文件 @
04787304
...
...
@@ -59,6 +59,7 @@
-
[
toolbar-item
](
js-components-basic-toolbar-item.md
)
-
[
toggle
](
js-components-basic-toggle.md
)
-
[
web
](
js-components-basic-web.md
)
-
[
xcomponent
](
js-components-basic-xcomponent.md
)
-
媒体组件
-
[
video
](
js-components-media-video.md
)
-
画布组件
...
...
zh-cn/application-dev/reference/arkui-js/js-components-basic-xcomponent.md
0 → 100644
浏览文件 @
04787304
# xcomponent
> **说明:**
> 该组件从API Version 9 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
用于显示写入了EGL/OpenGLES或媒体数据的组件。
## 权限列表
无
## 子组件
不支持。
## 属性
除支持
[
通用属性
](
js-components-common-attributes.md
)
外,还支持如下属性:
| 名称 | 参数类型 | 必填 | 描述 |
| ----------- | -------- | ---- | ------------------------------------------------------------ |
| id | string | 是 | 组件的唯一标识,支持最大的字符串长度128。 |
| type | string | 是 | 用于指定xcomponent组件类型,可选值为:
<br/>
-surface:组件内容单独送显,直接合成到屏幕。
<br/>
-component:组件内容与其他组件合成后统一送显。
<br/>
|
| libraryname | string | 否 | 应用Native层编译输出动态库名称。 |
## 样式
支持
[
通用样式
](
js-components-common-styles.md
)
。
## 事件
除支持
[
通用事件
](
js-components-common-events.md
)
外,还支持如下事件:
| 名称 | 功能描述 |
| ------------------------------- | ------------------------------- |
| onLoad(context?: object) => void | 插件加载完成时回调事件。
<br/>
context:开发者扩展的xcomponent方法的实例对象,context对象的接口由开发者自定义。 |
| onDestroy() => void | 插件卸载完成时回调事件。 |
## 方法
除支持
[
通用方法
](
js-components-common-methods.md
)
外,还支持如下方法:
| 名称 | 参数 | 返回值类型 | 描述 |
| ------------------------ | ------------------------------------------------------------ | ---------- | ------------------------------------------------------------ |
| getXComponentSurfaceId | - | string | 获取xcomponent对应Surface的ID,供@ohos接口使用,比如camera相关接口。 |
| setXComponentSurfaceSize | {
<br/>
surfaceWidth: number,
<br/>
surfaceHeight: number
<br/>
} | - | 设置xcomponent持有Surface的宽度和高度。 |
| getXComponentContext | - | object | 获取开发者扩展的xcomponent方法的实例对象。 |
## 示例
提供surface类型xcomponent,支持相机预览等能力。
```
<!-- xxx.hml -->
<div style="height: 500px; width: 500px; flex-direction: column; justify-content: center; align-items: center;">
<text id = 'camera' class = 'title'>camera_display</text>
<xcomponent id = 'xcomponent' type = 'surface' onload = 'onload' ondestroy = 'ondestroy'></xcomponent>
</div>
```
```
// xxx.js
import camera from '@ohos.multimedia.camera';
export default {
onload() {
var surfaceId = this.$element('xcomponent').getXComponentSurfaceId();
camera.createPreviewOutput(surfaceId).then((previewOutput) => {
console.log('Promise returned with the PreviewOutput instance');
})
}
}
```
\ No newline at end of file
zh-cn/application-dev/reference/arkui-ts/Readme-CN.md
浏览文件 @
04787304
...
...
@@ -84,7 +84,7 @@
-
[
TimePicker
](
ts-basic-components-timepicker.md
)
-
[
Toggle
](
ts-basic-components-toggle.md
)
-
[
Web
](
ts-basic-components-web.md
)
-
[
X
c
omponent
](
ts-basic-components-xcomponent.md
)
-
[
X
C
omponent
](
ts-basic-components-xcomponent.md
)
-
容器组件
-
[
AlphabetIndexer
](
ts-container-alphabet-indexer.md
)
-
[
Badge
](
ts-container-badge.md
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录