0
我想使藍牙可發現,有沒有辦法,並且android允許我的應用程序執行此操作?使藍牙可發現
我找到了這個鏈接,但我不知道該怎麼做。
[http://developer.android.com/reference/android/provider/Settings.System.html#BLUETOOTH_DISCOVERABILITY][1]
我想使藍牙可發現,有沒有辦法,並且android允許我的應用程序執行此操作?使藍牙可發現
我找到了這個鏈接,但我不知道該怎麼做。
[http://developer.android.com/reference/android/provider/Settings.System.html#BLUETOOTH_DISCOVERABILITY][1]
通過這個代碼的設備將發現的300秒
if (mBluetoothAdapter.getScanMode() != BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) {
Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivity(discoverableIntent);
}