在Flutter中嵌入原生View

我是綠色大米呀發表於2019-06-26

在之前的一篇文章中,介紹了在原生專案中引入Flutter

在這個基礎上,記錄一下在Flutter中引入原生View。(建議先看看上面的文章)

最終的結果就是,在原生專案中,以一個View的方式引入Flutter,再在這個Flutter的View中使用一個原生的View。

效果圖如下:

在Flutter中嵌入原生View

整個介面分成了兩部分,上面是Flutter的View,裡面有個原生的ImageView。下面是原生的WebView。

開始

首先是MainActivity的佈局檔案,上面一個FrameLayout用於承載Flutter。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                             xmlns:app="http://schemas.android.com/apk/res-auto"
                                             xmlns:tools="http://schemas.android.com/tools"
                                             android:layout_width="match_parent"
                                             android:layout_height="match_parent"
                                             android:background="#000000"
                                             tools:context=".MainActivity">

    <FrameLayout
            android:id="@+id/content"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_constraintHeight_percent="0.5"
            app:layout_constraintTop_toTopOf="parent"></FrameLayout>

    <WebView
            android:id="@+id/web"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/content"/>

</android.support.constraint.ConstraintLayout>
複製程式碼

Flutter以一個View的方式被裝載。

class MainActivity : AppCompatActivity() {

    @RequiresApi(Build.VERSION_CODES.LOLLIPOP)
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableSlowWholeDocumentDraw()
        setContentView(R.layout.activity_main)
        val flutterView = Flutter.createView(this@MainActivity,lifecycle,"route1")
        ViewRegistrant().registerWith(flutterView.pluginRegistry)
        val layout = FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT)
        content.addView(flutterView, layout)
        initWebView()
    }
    @SuppressLint("SetJavaScriptEnabled")
    private fun initWebView() {
        var webSettings = web.settings
        webSettings.javaScriptEnabled = true
        webSettings.setSupportZoom(false)
        web.requestFocusFromTouch()
        web.isVerticalScrollBarEnabled = false
        web.isHorizontalScrollBarEnabled = false
        web.loadUrl("https://www.baidu.com")
    }
}

複製程式碼

使用val flutterView = Flutter.createView(this@MainActivity,lifecycle,"route1")生成一個FlutterView,然後Add到佈局中。“route1”會被傳入到Flutter中。

第一步

繼承PlatformViewFactory在它的create()方法中返回一個在Flutter中要用的原生View。

這裡我返回了一個ImageView

class NativeImageView(createArgsCodec: MessageCodec<Any>) : PlatformViewFactory(createArgsCodec) {
    override fun create(context: Context, i: Int, o: Any?): PlatformView {
        var imageView = ImageView(context)
        imageView.layoutParams = ViewGroup.LayoutParams(100, 100)
        imageView.background = context.resources.getDrawable(R.mipmap.ic_launcher)
        return object : PlatformView {
            override fun getView(): View {
                return imageView
            }
            override fun dispose() {
            }
        }
    }

}
複製程式碼

第二步

寫一個橋接器,把上面寫好的View傳進去。

class ViewRegistrant : PluginRegistry.PluginRegistrantCallback {
    override fun registerWith(registry: PluginRegistry) {
        val key = ViewRegistrant::class.java.canonicalName
        if (registry.hasPlugin(key)) return
        val registrar = registry.registrarFor(key)
        registrar.platformViewRegistry().registerViewFactory("imageView", NativeImageView(StandardMessageCodec()))
    }
}
複製程式碼

這裡的"imageView",會在Flutter中用到。

第三步

裝載橋接器,把橋接器和我們已經建立好的FlutterView進行繫結。

ViewRegistrant().registerWith(flutterView.pluginRegistry)

最後

在Flutter中引用即可。

@override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text(widget.title),
      ),
      body: Container(
        color: Color(0xff0000ff),
        child: SizedBox(
          width: size,
          height: size,
          child: AndroidView(
            viewType: 'imageView',
          ),
        ),
      ),
      floatingActionButton: new FloatingActionButton(
        onPressed: _changeSize,
        child: new Icon(Icons.add),
      ),
    );
複製程式碼

注:此方法需要Android API 20以上,

相關文章