我研究了Bluetooth Low Energy

但是我还没有支持BLE设备进行测试。

因此,我想问:



我在 Android Emulator 4.3(x86)和Android Emulator 4.4(ARM)上尝试了以下代码:

// Use this check to determine whether BLE is supported on the device. Then
// you can selectively disable BLE-related features.
if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) {
   Toast.makeText(this, R.string.ble_not_supported, Toast.LENGTH_SHORT).show();
   finish();
}

并且它总是显示“ble_not_supported”

另一个问题是



我真的很想在模拟器上测试BLE功能。

最佳答案

Using the Emulator

谢谢,

10-08 19:06