文章目录
一、Flutter 和 Native 应用之间的通信场景
二、Flutter 和 Native 的 Channel 通信机制
三、Channel 通信机制支持的数据类型
四、Channel 类型
一、Flutter 和 Native 应用之间的通信场景
Flutter 和 Native 应用 之间的通信场景 :
① Native → \rightarrow→ Flutter ( 初始化 ) : Native 模块中向 Flutter 模块传递 初始化数据 initParams ; 如 : 在 Activity 中迁入 FlutterFragment , 可以传 initParams 初始化数据 ;
② Native → \rightarrow→ Flutter ( 运行中 ) : Native 模块在运行中 , 主动向 Flutter 模块传递数据 ; 如 : 收集了一些传感器数据 , 实时传递给 Flutter 模块 ;
③ Flutter → \rightarrow→ Native : Flutter 模块 向 Native 模块传递数据 ;
④ Flutter ↔ \leftrightarrow↔ Native : Flutter 模块 与 Native 模块 双向传递数据 ;
这里的 Native 应用指的是 Android 或 iOS 的原生应用 ;
二、Flutter 和 Native 的 Channel 通信机制
Flutter 和 Native 之间的通信 , 需要通过 Channel 完成 ;
如下图所示 , Flutter 中的消息 , 通过 平台通道 Channel 发送给 Android 中的 Activity , 然后在 Native 模块中再进行具体的分发 ;
三、Channel 通信机制支持的数据类型
Flutter 和 Native 的 Channel 通信所支持的数据类型 :
四、Channel 类型
Flutter 中有 3 33 种不同类型的 Channel 平台通道 :
① BasicMessageChannel : 传递 字符串 / 半结构化 信息 ; 该类型 Channel 可进行持续通信 ;
② MethodChannel : 跨 Native / Flutter 平台调用对方的方法 ; 该类型 Channel 只能进行一次通信 ;
③ EventChannel : 数据流通信 ; 数据流是 EventStreams ; 该类型 Channel 可进行持续通信 ;
BasicMessageChannel 和 EventChannel 都可以持续通信 , 但是 BasicMessageChannel 发送消息后 , 还可以接受对方回复的消息 , EventChannel 只能向对方发送消息 , 不能接受对方反馈消息 ;