当前位置:   article > 正文

Android 6.0 连接蓝牙设备(HC-05),如何判断连接状态_android开发 bluetoothdevice 是否已连接

android开发 bluetoothdevice 是否已连接

目的:本人初学Android一个月,目的是为了做毕业设计的android移动端的软件。想要判断HC-05蓝牙模块断开连接后,重新检测搜索设备连接。在网上找了许多博客和论坛,想要实现功能,发现大部分使用不了(主要是我太菜)。最后在stack overflow上找到解决办法!!!

硬件:Android(oppoA57)手机、HC-05、TTL-USB    软件:Android 6.0的系统XCOM V2.3串口工具、Android studio 4.1

以下是我所实现的的代码:

  1. protected void onCreate() {
  2. //...
  3. IntentFilter filter = new IntentFilter();
  4. filter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECTED);
  5. this.registerReceiver(BTReceiver, filter);
  6. }
  7. //The BroadcastReceiver that listens for bluetooth broadcasts
  8. private final BroadcastReceiver BTReceiver = new BroadcastReceiver() {
  9. @Override
  10. public void onReceive(Context context, Intent intent) {
  11. String action = intent.getAction();
  12. if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) {
  13. Intent intent_context = getIntent();
  14. finish();
  15. startActivity(intent_context);//此处是用于重启活动
  16. //Do something if disconnected
  17. Toast.makeText(getApplicationContext(), "不好意思,检测到设备已经断开连接,正在重启", Toast.LENGTH_SHORT).show();
  18. }
  19. }
  20. };

下图是方法的出处:

 该方法的出处:如何以编程方式判断蓝牙设备是否已连接?

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/866531
推荐阅读
相关标签
  

闽ICP备14008679号