如何在Android模拟器上模拟蓝牙

前端之家收集整理的这篇文章主要介绍了如何在Android模拟器上模拟蓝牙前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我用这个project来模拟android模拟器上的蓝牙.
我有2个类,一个启用蓝牙

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    BluetoothAdapter.SetContext(this);

    BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
    if(adapter==null) { 
        System.out.println("\nBluetooth NOT supported. Aborting.");
      return;
    }

    if (!adapter.isEnabled()) {
        adapter.enable();
    }
    }

另一次扫描设备并列出它们

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        BluetoothAdapter.SetContext(this);

        BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
        System.out.println("\nAdapter: " + adapter);

        if(adapter==null) { 
            System.out.println("\nBluetooth NOT supported. Aborting.");
          return;
        }

        if (!adapter.isEnabled()) {
            adapter.enable();
        }

        if (adapter.getScanMode() != BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) {
            adapter.startDiscovery();
        }


        Set

第二个设备没有检测到任何设备,所以我的代码出了什么问题?
提前致谢.

最佳答案
BluetoothAdapter.getDefaultAdapter()返回默认的本地适配器.
如果设备没有蓝牙功能,它将返回null,并且由于您使用的是不支持蓝牙的仿真器,它将返回null.
原文链接:https://www.f2er.com/android/430426.html

猜你在找的Android相关文章