flutter插件开发学习之旅(3)-------检测蓝牙状态和打开蓝牙实战

检测蓝牙状态和打开蓝牙实战

前言

经过上二篇的学习,大家基本上应该明白flutter插件开发的基本流程。这篇博客就来一次实战吧,我曾经百度过,还没有关于蓝牙的插件。但是我们开发关于蓝牙的项目,就研究了flutter调用原生蓝牙api,在这个给大家分享一下。

准备工具

这套课程是采用Android Studio进行开发的。当前在此之前请准备好Flutter开发环境,我这里就不进行讲解了

实战开始

lib/main.dart添加一个调用原生方法

 ///////////Flutter 调用原生 Start//////////////

	//这里的参数名要和底层原生的申明的参数名一样
  static const MethodChannel methodChannel=
      MethodChannel('samples.flutter.io/bluetooth');

  Future<void> _openBlueTooth()async{		//打开蓝牙
    String message;
    message=await methodChannel.invokeMethod('openBuleTooth');
    setState(() {
      _message=message;
    });
  }

  Future<void> _getBlueTooth()async{     //检测蓝牙
    String message;
    message=await methodChannel.invokeMethod('getBuleTooth');
    setState(() {
      _message=message;
    });
  }

  //////// Flutter 调用原生  End  ////////

底层原生编写


public class MainActivity extends FlutterActivity {
	
  //申明方法名
  private static final String BLUETOOTH_CHANNEL="samples.flutter.io/bluetooth";

  private BluetoothManager bluetoothManager = null;	 //初始化
  private BluetoothAdapter bluetoothAdapter = null;	//蓝牙适配器

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    GeneratedPluginRegistrant.registerWith(this);


    new MethodChannel(getFlutterView(),BLUETOOTH_CHANNEL).setMethodCallHandler(
            new MethodChannel.MethodCallHandler() {
              @Override
              public void onMethodCall(MethodCall methodCall, MethodChannel.Result result) {
                if(methodCall.method.equals("openBuleTooth")){	//判断flutter调用那个方法
                  if(supportBuleTooth()){						//检测真机是否支持蓝牙
                    openBuleTooth();							//打开蓝牙
                    result.success("蓝牙已经被开启");
                  }else{
                    result.error("设备不支持蓝牙",null,null);
                  }
                }
                else if(methodCall.method.equals("getBuleTooth")){
                  if(supportBuleTooth()){
                    if(disabled()){								//检测蓝牙的状态
                      result.success("蓝牙已经开启");
                    }else{
                      result.success("蓝牙未开启");
                    }
                  }
                }
              }
            }
    );
  }

  //是否支持蓝牙

  private boolean supportBuleTooth(){


    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
      bluetoothManager=(BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
    }
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
      bluetoothAdapter=bluetoothManager.getAdapter();
    }
    if (bluetoothAdapter==null){    //不支持蓝牙
      return false;
    }
    return true;
  }

  //打开蓝牙
  private void openBuleTooth(){
    //判断蓝牙是否开启
      Intent enabler=new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
      startActivityForResult(enabler,1);
  }

  //判断蓝牙是否已经开启
  private boolean disabled(){
    if(bluetoothAdapter.isEnabled()){
      return true;
    }
    return false;
  }
}

下面就是进行简单的布局

@override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: new Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: <Widget>[
                new Row(
                  mainAxisAlignment: MainAxisAlignment.center,
                  children: <Widget>[
                    Text('蓝牙状态:'),
                    Text(
                        _message,
                    )
                  ],
                ),
                Padding(
                  padding: EdgeInsets.all(10.0),
                  child:Column(
                    children: <Widget>[
                      RaisedButton(
                        color: Colors.blue,
                        textColor: Colors.white,
                        child: Text('打开蓝牙'),
                        onPressed: _openBlueTooth,
                      ),
                      RaisedButton(
                        color: Colors.blue,
                        textColor: Colors.white,
                        child: Text('检测蓝牙状态'),
                        onPressed: _getBlueTooth,
                      ),
                    ],
                  )
                )
              ],
            )
          ],
        ),
      ),
    );
  }

完整的代码已经传到我的github上面,大家可以到https://github.com/1144075799/flutter_bluetooth 下载源码观看,可以的话,给一个star。这个项目还会继续完善下去…

发布了50 篇原创文章 · 获赞 35 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_35905501/article/details/89080537