android调用flutter页面,flutter-android调用dart android原生启动flutter界面

该博客主要展示了如何在Flutter应用中与Android原生代码进行交互,通过EventBus实现在Android端触发事件并传递数据到Flutter端。具体步骤包括注册Flutter插件、设置EventChannel以及在Android端监听和响应事件。
摘要由CSDN通过智能技术生成

package com.topway.cms;

import android.os.Bundle;

import android.text.TextUtils;

import com.topway.FlutterNativePlugin;

import com.topway.bean.MyEvent;

import com.topway.utils.MyLog;

import org.greenrobot.eventbus.EventBus;

import org.greenrobot.eventbus.Subscribe;

import org.greenrobot.eventbus.ThreadMode;

import io.flutter.app.FlutterActivity;

import io.flutter.plugin.common.EventChannel;

import io.flutter.plugins.GeneratedPluginRegistrant;

public class MainActivity extends FlutterActivity {

public static String CHANNEL = "com.native/openLogin";

EventChannel.EventSink mySink;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

GeneratedPluginRegistrant.registerWith(this);

FlutterNativePlugin.registerWith(this.registrarFor(FlutterNativePlugin.CHANNEL));

EventBus.getDefault().register(this);

native2Dart();

}

@Subscribe(threadMode = ThreadMode.MAIN)

public void onEventMainThread(MyEvent myEvent) {

if (TextUtils.equals("openLogin", myEvent.getType())) {

mySink.success("haha");

}

}

private void native2Dart() {

EventChannel eventChannel = new EventChannel(getFlutterView(), CHANNEL);

EventChannel.StreamHandler streamHandler = new EventChannel.StreamHandler() {

// 这个onListen是Flutter端开始监听这个channel时的回调,第二个参数 EventSink是用来传数据的载体。

@Override

public void onListen(Object o, EventChannel.EventSink eventSink) {

MyLog.log("onListen被调用" + o.toString());

mySink = eventSink;

}

// 对面不再接收

@Override

public void onCancel(Object o) {

MyLog.log("onCancel被调用");

}

};

eventChannel.setStreamHandler(streamHandler);

}

@Override

protected void onDestroy() {

super.onDestroy();

EventBus.getDefault().unregister(this);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值