Flutter跳转到原生iOS、Android页面

本文针对初学者, 讲述用flutter自带方法做简单逻辑跳转处理.
非初学者或想更方便实现功能的,可了解插件flutter_boost及其它.

  • Flutter跳转到原生iOS页面

1. flutter页面中:
class _MyHomePageState extends State<MyHomePage> {

  //平台通道––––跳转到iOS页面
  static const platform = const MethodChannel('samples.flutter.jumpto.iOS');

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[

            TextButton(onPressed: _jumpToIosMethod, child: Text('跳转到iOS页面')),
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }



  //跳转到iOS页面
  Future<Null> _jumpToIosMethod() async {
    final String result = await platform.invokeMethod('jumpToIosPage');
    print('result===$result');

  }

}
2. iOS的 AppDelegate.swift :
import UIKit
import Flutter


@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate, UINavigationControllerDelegate{
    
    var navigationController: UINavigationController?
    
  override func application(
    _ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  ) -> Bool {

      
      let controller : FlutterViewController = window?.rootViewController as! FlutterViewController
      
      self.navigationController = UINavigationController.init(rootViewController: controller)
      window = UIWindow(frame: UIScreen.main.bounds)
      window?.rootViewController = self.navigationController
      self.navigationController?.delegate=self //设置代理 ,配置导航栏的显示与否
      window?.makeKeyAndVisible()
    
     
      let jumpIosChannel = FlutterMethodChannel(name: "samples.flutter.jumpto.iOS",binaryMessenger: controller.binaryMessenger)
    
   
      //处理-----跳转到iOS页面
      jumpIosChannel.setMethodCallHandler({
        [weak self] (call: FlutterMethodCall, result: FlutterResult) -> Void in
        // Note: this method is invoked on the UI thread.
        guard call.method == "jumpToIosPage" else {
          result(FlutterMethodNotImplemented)
          return
        }
        self?.jumpToIosPageMethod(result: result) //跳转页面
      })
      
      
    GeneratedPluginRegistrant.register(with: self)
    return super.application(application, didFinishLaunchingWithOptions: launchOptions)
  }
    
    
    //跳转到iOS页面
    private func jumpToIosPageMethod(result: FlutterResult) {
             
                let vc: UIViewController = JumpTestViewController()
                vc.navigationItem.title = "原生页面"
               self.navigationController?.pushViewController(vc, animated: true)
      
          result("跳转")
    }
    
    
    //实现UINavigationControllerDelegate代理
    func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
        //如果是Flutter页面,导航栏就隐藏
        navigationController.navigationBar.isHidden = viewController.isKind(of: FlutterViewController.self)
    }

}

\color{OrangeRed}{说明}:之所以让AppDelegate继承于UINavigationControllerDelegate,并实现navigationController:willShow方法,\color{brown}{是因为flutter页面跳转到原生页面返回后,iOS的导航栏并没有消失},所以实现代理方法对导航栏的显示做了判断。

JumpTestViewController.swift 为:

import Foundation

class JumpTestViewController: UIViewController {
    
    lazy var testLabel: UILabel = {
        let label = UILabel()
        label.frame.size = CGSize(width: 300, height: 50)
        label.backgroundColor = UIColor.blue
        label.textColor = UIColor.white
        label.text = "原生界面"
        label.textAlignment = .center
        
        label.center.x = self.view.bounds.width/2
        label.center.y = self.view.bounds.height/2
        
        return label
    }()

    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.
        self.view.backgroundColor = #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1)
        self.view.addSubview(testLabel)
    }
    
}
3. 效果展示
iOS.gif
  • Flutter跳转到原生Android页面

1. flutter页面中:
class _MyHomePageState extends State<MyHomePage> {

  //平台通道––––跳转到Android页面
  static const platform = const MethodChannel('samples.flutter.jumpto.android');


  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[

            TextButton(onPressed: _jumpToAndroidMethod, child: Text('跳转到Android页面')),
          ],
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }


  //跳转到Android页面
  Future<Null> _jumpToAndroidMethod() async {
    final String result = await platform.invokeMethod('jumpToAndroidPage');
    print('result===$result');

  }
}
2. Android的 MainActivity.kt :
package com.example.flutter_jumpto_native

import android.content.Context
import android.content.ContextWrapper
import android.content.Intent
import android.content.IntentFilter
import android.os.BatteryManager
import android.os.Build
import android.util.Log
import androidx.annotation.NonNull
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugin.common.MethodChannel

class MainActivity: FlutterActivity() {

    override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
        super.configureFlutterEngine(flutterEngine)

        //跳转到原生Android页面
        JumpChannel(flutterEngine.dartExecutor.binaryMessenger,this)

    }
}

JumpChannel.kt :

package com.example.flutter_jumpto_native

import android.app.Activity
import android.content.Context
import android.content.ContextWrapper
import android.content.Intent
import android.content.IntentFilter
import android.os.BatteryManager
import android.os.Build
import android.util.Log
import io.flutter.embedding.android.FlutterActivity
import io.flutter.plugin.common.BinaryMessenger
import io.flutter.plugin.common.MethodCall
import io.flutter.plugin.common.MethodChannel


class JumpChannel(flutterEngine: BinaryMessenger, activity: FlutterActivity): MethodChannel.MethodCallHandler {
    private val batteryChannelName = "samples.flutter.jumpto.android"
    private var channel: MethodChannel
    private var mActivity: FlutterActivity

    init {
        channel = MethodChannel(flutterEngine, batteryChannelName)
        channel.setMethodCallHandler(this)
        mActivity = activity;
    }

    override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {

        if (call.method == "jumpToAndroidPage") {

            var  intent = Intent(mActivity,SecondActivity::class.java)
            mActivity.startActivity(intent)

            result.success('跳转');
        }else if(call.method == "别的method"){
            //处理samples.flutter.jumpto.android下别的method方法
        } else {
            result.notImplemented()
        }
    }

}

SecondActivity.kt :

package com.example.flutter_jumpto_native

import android.os.Bundle
import android.util.Log
import androidx.fragment.app.FragmentActivity

class SecondActivity: FragmentActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        Log.e("YM", "第二个页面的渲染");
        setContentView(R.layout.activity_second);
    }
}

在AndroidManifest.xml的application中注册SecondActivity:

 <activity android:name=".SecondActivity"/>

在res文件夹下创建一个layout文件夹,并添加activity_second.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:textSize="18sp"
        android:text="安卓原生界面" />
</RelativeLayout>
3. 效果展示
android.gif

Demo:flutter_jumpto_native

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容