提交 fc1cd13b authored 作者: 祁增奎's avatar 祁增奎

报错修改

上级 83e9eda7
package com.clx.clx_listener_screen package com.clx.clx_listener_screen
import io.flutter.embedding.engine.plugins.FlutterPlugin import android.content.ContentValues
import io.flutter.plugin.common.MethodCall import android.content.Context
import io.flutter.plugin.common.MethodChannel import android.content.Intent
import io.flutter.plugin.common.MethodChannel.MethodCallHandler import android.database.Cursor
import io.flutter.plugin.common.MethodChannel.Result import android.net.Uri
import android.os.Build
import android.os.Bundle
import android.os.Environment
import android.provider.MediaStore
import androidx.annotation.NonNull
import androidx.annotation.RequiresApi
import androidx.core.content.ContextCompat.startActivity
/** CLXListenerScreenPlugin */ /** CLXListenerScreenPlugin */
class CLXListenerScreenPlugin: FlutterPlugin, MethodCallHandler { class CLXListenerScreenPlugin : FlutterPlugin, MethodCallHandler {
/// The MethodChannel that will the communication between Flutter and native Android /// The MethodChannel that will the communication between Flutter and native Android
/// ///
/// This local reference serves to register the plugin with the Flutter Engine and unregister it /// This local reference serves to register the plugin with the Flutter Engine and unregister it
/// when the Flutter Engine is detached from the Activity /// when the Flutter Engine is detached from the Activity
private lateinit var channel : MethodChannel private lateinit var channel: MethodChannel
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) { override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "clx_listener_screen") channel = MethodChannel(flutterPluginBinding.binaryMessenger, "clx_listener_screen")
channel.setMethodCallHandler(this) channel.setMethodCallHandler(this)
} setupChannel(flutterPluginBinding.binaryMessenger, flutterPluginBinding.applicationContext)
override fun onMethodCall(call: MethodCall, result: Result) {
if (call.method == "getPlatformVersion") {
result.success("Android ${android.os.Build.VERSION.RELEASE}")
} else {
result.notImplemented()
} }
}
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
channel.setMethodCallHandler(null) override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
} if (call.method == "startWebView") {
result.success("Android ${android.os.Build.VERSION.RELEASE}")
} else {
result.notImplemented()
}
}
override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
channel.setMethodCallHandler(null)
}
private fun setupChannel(messenger: BinaryMessenger, context: Context) {
channel = MethodChannel(messenger,"clx_listener_screen")
channel.setMethodCallHandler { call, result ->
when (call.method) {
}
}
}
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论