Flutter中PlatformView在鸿蒙中的使用

饭宝  论坛元老 | 2025-1-22 22:40:58 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 1000|帖子 1000|积分 3000

概述

集成平台视图(后称为平台视图)允许将原生视图嵌入到 Flutter 应用中,所以你可以通过 Dart 将变换、裁剪和不透明度等结果应用到原生视图。
例如,这使你可以通过使用平台视图直接在 Flutter 应用内部使用鸿蒙中的原生舆图。
在Flutter中的处置惩罚

首先我们需要再Flutter中创建一个视图,用来加载Ohos平台的view。
  1. import 'dart:async';
  2. import 'package:flutter/material.dart';
  3. import 'package:flutter/services.dart';
  4. typedef OnViewCreated = Function(CustomViewController);
  5. class CustomOhosView extends StatefulWidget {
  6.   final OnViewCreated onViewCreated;
  7.   const CustomOhosView(this.onViewCreated, {super.key});
  8.   @override
  9.   State<CustomOhosView> createState() => _CustomOhosViewState();
  10. }
  11. class _CustomOhosViewState extends State<CustomOhosView> {
  12.   late MethodChannel _channel;
  13.   @override
  14.   Widget build(BuildContext context) {
  15.     return _getPlatformFaceView();
  16.   }
  17.   Widget _getPlatformFaceView() {
  18.     // 加载platformview
  19.     /**
  20.      * viewType:传递给Native侧,告知插件需要创建那个PlatformView,这个PlatformView需要在插件初始化时注册。
  21.         onPlatformViewCreated:PlatformView创建成功时的回调。
  22.         creationParams:传递给PlatformView的初始化参数。
  23.      */
  24.     return OhosView(
  25.       viewType: 'com.rex.custom.ohos/customView',
  26.       onPlatformViewCreated: _onPlatformViewCreated,
  27.       creationParams: const <String, dynamic>{'initParams': 'hello world'},
  28.       creationParamsCodec: const StandardMessageCodec(),
  29.     );
  30.   }
  31.   void _onPlatformViewCreated(int id) {
  32.     print("platformview==================创建成功");
  33.     _channel = MethodChannel('com.rex.custom.ohos/customView$id');
  34.     final controller = CustomViewController._(
  35.       _channel,
  36.     );
  37.     widget.onViewCreated(controller);
  38.   }
  39. }
  40. // 用于实现Dart侧与Native侧的交互
  41. class CustomViewController {
  42.   final MethodChannel _channel;
  43.   final StreamController<String> _controller = StreamController<String>();
  44.   CustomViewController._(
  45.       this._channel,
  46.       ) {
  47.     _channel.setMethodCallHandler(
  48.           (call) async {
  49.         switch (call.method) {
  50.           case 'getMessageFromOhosView':
  51.           // 从native端获取数据
  52.             final result = call.arguments as String;
  53.             _controller.sink.add(result);
  54.             break;
  55.         }
  56.       },
  57.     );
  58.   }
  59.   Stream<String> get customDataStream => _controller.stream;
  60.   // 发送数据给native
  61.   Future<void> sendMessageToOhosView(String message) async {
  62.     await _channel.invokeMethod(
  63.       'getMessageFromFlutterView',
  64.       message,
  65.     );
  66.   }
  67. }
复制代码
鸿蒙端

创建内嵌的鸿蒙视图

该视图就是我们ohos平台中的组件, 示例代码如下:
  1. @Component
  2. export struct PlatformView_Custom {
  3.   @Prop params: Params
  4.   // customView: video_Customview = this.params.platformView as video_Customview
  5.   build() {
  6.     Column() {
  7.       Column() {
  8.         Button("测试按钮")
  9.           .onClick(() => {
  10.             console.log("点击按钮时间")
  11.           })
  12.       }
  13.       .backgroundColor(Color.Orange)
  14.       .height('230vp')
  15.       .width('100%')
  16.       .justifyContent(FlexAlign.End)
  17.     }
  18.     .backgroundColor(Color.Pink)
  19.       .width('100%')
  20.       .height('100%')
  21.   }
  22. }
复制代码
注意:PlatformView_Custom 嵌入到Flutter页面中时, 体系实际上是在我们的这个组件又包裹了一层空间, 并且默认是布满Flutter父空间的全部空间。
创建PlatformView

我们需要创建一个PlatformView的子类,并实现并且实现MethodCallHandler接口。
该类有两个作用:

  • 通过类中的getView(): WrappedBuilder<[Params]>{}方法把上面创建的鸿蒙组件加载到这个PlatformView上
  • 实现MethodCallHandler接口, 负责和Flutter的相干通信
示例代码如下:
  1. /**
  2. * @ProjectName : ohos
  3. * @FileName : PlatformView_plugin
  4. * @Author : issuser
  5. * @Time : 2024/10/11 9:33
  6. * @Description : 文件描述
  7. */
  8. import {
  9.   BinaryMessenger,
  10.   MethodCall, MethodCallHandler, MethodChannel, MethodResult, PlatformView,
  11.   StandardMethodCodec } from '@ohos/flutter_ohos';
  12. import { Params } from '@ohos/flutter_ohos/src/main/ets/plugin/platform/PlatformView';
  13. import { PlatformView_Custom } from './PlatformView_Custom';
  14. import { common } from '@kit.AbilityKit';
  15. export class PlatformView_plugin extends PlatformView implements MethodCallHandler {
  16.   numValue: string = "test";
  17.   methodChannel: MethodChannel;
  18.   index: number = 1;
  19. // 构造方法
  20.   constructor(context: common.Context, viewId: number, args: ESObject, message: BinaryMessenger) {
  21.     super();
  22.     // 注册消息通道,消息通道根据具体需求添加,代码仅作为示例
  23.     this.methodChannel = new MethodChannel(message, `com.rex.custom.ohos/video_CustomView${viewId}`, StandardMethodCodec.INSTANCE);
  24.     // 给通道添加监听
  25.     this.methodChannel.setMethodCallHandler(this);
  26.   }
  27. // 实现onMethodCall接口
  28.   onMethodCall(call: MethodCall, result: MethodResult): void {
  29.     // 接受Dart侧发来的消息
  30.     let method: string = call.method;
  31.     let link1: SubscribedAbstractProperty<number> = AppStorage.link('numValue');
  32.     switch (method) {
  33.       case 'video_getMessageFromFlutterView':
  34.         let value: ESObject = call.args;
  35.         this.numValue = value;
  36.         link1.set(value)
  37.         console.log("nodeController receive message from dart: " + this.numValue);
  38.         result.success(true);
  39.         break;
  40.     }
  41.   }
  42.   //  返回鸿蒙要展示的视图
  43.   getView(): WrappedBuilder<[Params]> {
  44.     return new WrappedBuilder(platformBuilder)
  45.   }
  46. // 生命周期方法 销毁时
  47.   dispose(): void {
  48.     throw new Error('Method not implemented.');
  49.   }
  50. }
  51. // 全局的build函数,通过这个bbuilder函数返回我们的组件view
  52. @Builder
  53. function platformBuilder(param: Params) {
  54.   PlatformView_Custom({params: param})
  55.     .backgroundColor(Color.Green)
  56. }
复制代码
创建PlatformViewFactory

PlatformView类的创建是通过PlatformViewFactory来创建, 所以我们需要创建一个工厂类继承自PlatformViewFactory。
示例代码:
  1. // 通过工厂方法创建一个plaugin示例
  2. export class CustomFactory extends PlatformViewFactory {
  3.   message: BinaryMessenger;
  4.   constructor(message: BinaryMessenger, createArgsCodes: MessageCodec<Object>) {
  5.     super(createArgsCodes);
  6.     this.message = message;
  7.   }
  8.   public create(context: Context, viewId: number, args: Object): PlatformView {
  9.     return new PlatformView_plugin(context, viewId, args, this.message);
  10.   }
  11. }
复制代码
创建plugin,注册platformview

新建一个继承于FlutterPlugin的CustomPlugin插件,在onAttachedToEngine中,注册自定义的PlatformViewFactory
示例代码:
  1. import { StandardMessageCodec } from '@ohos/flutter_ohos';
  2. import {
  3.   FlutterPlugin,
  4.   FlutterPluginBinding
  5. } from '@ohos/flutter_ohos/src/main/ets/embedding/engine/plugins/FlutterPlugin';
  6. import { CustomFactory } from './CustomFactory';
  7. export class CustomPlugin implements FlutterPlugin {
  8.   getUniqueClassName(): string {
  9.     return 'CustomPlugin'
  10.   }
  11.        
  12. // 当插件挂载到引擎上时
  13.   onAttachedToEngine(binding: FlutterPluginBinding): void {
  14.     // 在插件挂在在引擎的时候, 我们需要注册我们的view
  15.     binding.getPlatformViewRegistry()?.
  16.     registerViewFactory('com.rex.custom.ohos/customView',
  17.       new CustomFactory(binding.getBinaryMessenger(), StandardMessageCodec.INSTANCE));
  18.   }
  19.   onDetachedFromEngine(binding: FlutterPluginBinding): void {
  20.     throw new Error('Method not implemented.');
  21.   }
  22. }
复制代码
注册插件

在EntryAblitity中注册我们创建的自定义插件:
  1. export default class EntryAbility extends FlutterAbility {
  2.   configureFlutterEngine(flutterEngine: FlutterEngine) {
  3.     super.configureFlutterEngine(flutterEngine)
  4.     GeneratedPluginRegistrant.registerWith(flutterEngine)
  5.     // 注册platformview的自定义插件
  6.     this.addPlugin(new CustomPlugin());
  7.   }
  8. }
复制代码
然后执行flutter build hap命令进行编译, 配置相干证书, 运行。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

饭宝

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表