当前位置:   article > 正文

鸿蒙Harmony应用开发—ArkTS声明式开发(基础手势:PluginComponent)

鸿蒙Harmony应用开发—ArkTS声明式开发(基础手势:PluginComponent)

提供外部应用组件嵌入式显示功能,即外部应用提供的UI可在本应用内显示。

说明:

  • 该组件从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
  • 本组件为系统接口。

子组件

接口

PluginComponent(value: { template: PluginComponentTemplate, data: KVObject})

创建插件组件,用于显示外部应用提供的UI。

参数:

参数名参数类型必填参数描述
value{
template:  PluginComponentTemplate,
data: KVObject
}
template:  组件模板,用于跟提供者定义的组件绑定。
data: 传给插件组件提供者使用的数据。

PluginComponentTemplate类型说明

参数类型描述
sourcestring组件模板名。
bundleNamestring提供者Ability的bundleName。

属性

必须显式设置组件宽高为非0有效值。

说明:

模板支持两种提供方式:

  • 1.使用绝对路径进行资源提供:source字段填写模板绝对路径,bundleName不需要填写。仅适用于不需要加载资源的单独模板页面,不建议使用。

  • 2.通过应用包进行资源提供:bundleName字段需要填写应用包名;source字段填写相对hap包的模板相对路径,对于多hap场景,通过相对路径&模块名称的方式进行hap包的确认。

    例如:{source:'pages/PluginProviderExample.ets&entry', bundleName:'com.example.provider'}

    仅对FA模型支持source字段填写AbilityName进行模板提供。

    例如:{source:'plugin', bundleName:'com.example.provider'}

事件

仅支持绑定手势方法,并分发给提供方页面,在提供方页面内部处理。

除支持通用事件,还支持以下事件:

名称功能描述
onComplete(callback: () => void)组件加载完成回调。
onError(callback: (info: { errcode: number, msg: string }) => void)组件加载错误回调。
errcode: 错误码。
msg: 错误信息。

示例

组件使用方

  1. //PluginUserExample.ets
  2. import plugin from "./plugin_component"
  3. interface Info{
  4. errcode:number,
  5. msg:string
  6. }
  7. @Entry
  8. @Component
  9. struct PluginUserExample {
  10. build() {
  11. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
  12. Text('Hello World')
  13. .fontSize(50)
  14. .fontWeight(FontWeight.Bold)
  15. Button('Register Request Listener')
  16. .fontSize(30)
  17. .width(400)
  18. .height(100)
  19. .margin({top:20})
  20. .onClick(()=>{
  21. plugin.onListener()
  22. console.log("Button('Register Request Listener')")
  23. })
  24. Button('Request')
  25. .fontSize(50)
  26. .width(400)
  27. .height(100)
  28. .margin({ top: 20 })
  29. .onClick(() => {
  30. plugin.Request()
  31. console.log("Button('Request')")
  32. })
  33. PluginComponent({
  34. template: { source: 'pages/PluginProviderExample.ets&entry', bundleName: 'com.example.plugin' },
  35. data: { 'countDownStartValue': 'new countDownStartValue' }
  36. }).size({ width: 500, height: 350 })
  37. .onComplete(() => {
  38. console.log("onComplete")
  39. })
  40. .onError((info:Info) => {
  41. console.log("onComplete" + info.errcode + ":" + info.msg)
  42. })
  43. }
  44. .width('100%')
  45. .height('100%')
  46. }
  47. }

组件提供方

  1. //PluginProviderExample.ets
  2. import plugin from "./plugin_component"
  3. @Entry
  4. @Component
  5. struct PluginProviderExample {
  6. @State message: string = 'no click!'
  7. build() {
  8. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
  9. Button('Register Push Listener')
  10. .fontSize(30)
  11. .width(400)
  12. .height(100)
  13. .margin({top:20})
  14. .onClick(()=>{
  15. plugin.onListener()
  16. console.log("Button('Register Push Listener')")
  17. })
  18. Button('Push')
  19. .fontSize(30)
  20. .width(400)
  21. .height(100)
  22. .margin({top:20})
  23. .onClick(()=>{
  24. plugin.Push()
  25. this.message = "Button('Push')"
  26. console.log("Button('Push')")
  27. })
  28. Text(this.message)
  29. .height(150)
  30. .fontSize(30)
  31. .padding(5)
  32. .margin(5)
  33. }.width('100%').height('100%').backgroundColor(0xDCDCDC).padding({ top: 5 })
  34. }
  35. }

Plugin组件工具

FA模型
  1. //当前示例代码仅适用于js源文件
  2. //plugin_component.js
  3. import pluginComponentManager from '@ohos.pluginComponent'
  4. function onPushListener(source, template, data, extraData) {
  5. console.log("onPushListener template.source=" + template.source)
  6. console.log("onPushListener template.ability=" + template.ability)
  7. console.log("onPushListener data=" + JSON.stringify(data))
  8. console.log("onPushListener extraData=" + JSON.stringify(extraData))
  9. }
  10. function onRequestListener(source, name, data)
  11. {
  12. console.log("onRequestListener name=" + name);
  13. console.log("onRequestListener data=" + JSON.stringify(data));
  14. return {template:"plugintemplate", data:data};
  15. }
  16. export default {
  17. //register listener
  18. onListener() {
  19. pluginComponentManager.on("push", onPushListener)
  20. pluginComponentManager.on("request", onRequestListener)
  21. },
  22. Push() {
  23. // 组件提供方主动发送事件
  24. pluginComponentManager.push(
  25. {
  26. want: {
  27. bundleName: "com.example.plugin",
  28. abilityName: "com.example.myapplication.PluginProviderExample",
  29. },
  30. name: "PluginProviderExample",
  31. data: {
  32. "key_1": "plugin component test",
  33. "key_2": 34234
  34. },
  35. extraData: {
  36. "extra_str": "this is push event"
  37. },
  38. jsonPath: "",
  39. },
  40. (err, data) => {
  41. console.log("push_callback: push ok!");
  42. }
  43. )
  44. },
  45. Request() {
  46. // 组件使用方主动发送事件
  47. pluginComponentManager.request({
  48. want: {
  49. bundleName: "com.example.plugin",
  50. abilityName: "com.example.myapplication.PluginProviderExample",
  51. },
  52. name: "PluginProviderExample",
  53. data: {
  54. "key_1": "plugin component test",
  55. "key_2": 34234
  56. },
  57. jsonPath: "",
  58. },
  59. (err, data) => {
  60. console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)
  61. console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)
  62. console.log("request_callback: data=" + JSON.stringify(data.data))
  63. console.log("request_callback: extraData=" + JSON.stringify(data.extraData))
  64. }
  65. )
  66. }
  67. }
Stage模型
  1. //当前示例代码仅适用于js源文件
  2. //plugin_component.js
  3. import pluginComponentManager from '@ohos.pluginComponent'
  4. function onPushListener(source, template, data, extraData) {
  5. console.log("onPushListener template.source=" + template.source)
  6. console.log("onPushListener template.ability=" + template.ability)
  7. console.log("onPushListener data=" + JSON.stringify(data))
  8. console.log("onPushListener extraData=" + JSON.stringify(extraData))
  9. }
  10. function onRequestListener(source, name, data)
  11. {
  12. console.log("onRequestListener name=" + name);
  13. console.log("onRequestListener data=" + JSON.stringify(data));
  14. return {template:"plugintemplate", data:data};
  15. }
  16. export default {
  17. //register listener
  18. onListener() {
  19. pluginComponentManager.on("push", onPushListener)
  20. pluginComponentManager.on("request", onRequestListener)
  21. },
  22. Push() {
  23. // 组件提供方主动发送事件
  24. pluginComponentManager.push(
  25. {
  26. owner: {
  27. bundleName: "com.example.myapplication",
  28. abilityName: "com.example.myapplication.MainAbility",
  29. },
  30. target: {
  31. bundleName: "com.example.plugin",
  32. abilityName: "com.example.myapplication.PluginProviderExample",
  33. },
  34. name: "PluginProviderExample",
  35. data: {
  36. "key_1": "plugin component test",
  37. "key_2": 34234
  38. },
  39. extraData: {
  40. "extra_str": "this is push event"
  41. },
  42. jsonPath: "",
  43. },
  44. (err, data) => {
  45. console.log("push_callback: push ok!");
  46. }
  47. )
  48. },
  49. Request() {
  50. // 组件使用方主动发送事件
  51. pluginComponentManager.request({
  52. owner: {
  53. bundleName: "com.example.myapplication",
  54. abilityName: "com.example.myapplication.MainAbility",
  55. },
  56. target: {
  57. bundleName: "com.example.plugin",
  58. abilityName: "com.example.myapplication.PluginProviderExample",
  59. },
  60. name: "PluginProviderExample",
  61. data: {
  62. "key_1": "plugin component test",
  63. "key_2": 34234
  64. },
  65. jsonPath: "",
  66. },
  67. (err, data) => {
  68. console.log("request_callback: componentTemplate.ability=" + data.componentTemplate.ability)
  69. console.log("request_callback: componentTemplate.source=" + data.componentTemplate.source)
  70. console.log("request_callback: data=" + JSON.stringify(data.data))
  71. console.log("request_callback: extraData=" + JSON.stringify(data.extraData))
  72. }
  73. )
  74. }
  75. }

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

腾讯T10级高工技术,安卓全套VIP内容 →Android全套学习资料

腾讯T10级高工技术,安卓全套VIP课程

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/223246
推荐阅读
相关标签
  

闽ICP备14008679号