我有两部Android手机。我想通过蓝牙在它们之间建立自动连接。例如,
我有我的Android手机与另一个蓝牙配对。当我将这些手机放在一起时,他们需要检测蓝牙设备,并自动连接到选定的Android手机(之前已知的Adress / MAC / Paired)。我不需要再连接它。我想在我的Android应用程序中使用这种连接。
我谷歌并发现了一些相关的参考,但他们还没有解决问题。我认为我需要创建一个线程/服务,以便在范围内自动连接蓝牙。但是,我无法实现它。如果您有一个很好的解决方案,请告诉我。谢谢
Automatically connect to paired bluetooth device when in range
Find already paired bluetooth devices automatically, when they are in range
/**
* The BroadcastReceiver that listens for discovered devices and changes the title when
* discovery is finished
*/
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
// When discovery finds a device
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
// Get the BluetoothDevice object from the Intent
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// If it's already paired, skip it, because it's been listed already
if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());
}
// When discovery is finished, change the Activity title
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
setProgressBarIndeterminateVisibility(false);
setTitle(R.string.select_device);
if (mNewDevicesArrayAdapter.getCount() == 0) {
String noDevices = getResources().getText(R.string.none_found).toString();
mNewDevicesArrayAdapter.add(noDevices);
}
}
}
};
答案 0 :(得分:0)
这些广播接收器只有在发现过程运行后才会触发。
可以通过两种方式启动发现:在蓝牙设置中手动启动,或通过调用BluetoothAdapter#startDiscovery()
以编程方式启动。但是,文档说明:
设备发现是一项重量级程序。在发现过程中不应尝试与远程蓝牙设备建立新连接,并且现有连接将遇到有限的带宽和高延迟。使用
cancelDiscovery()
取消正在进行的发现。发现不是由Activity管理的,而是作为系统服务运行的,因此应用程序应该始终调用cancelDiscovery()
,即使它没有直接请求发现,只是为了确定。
这意味着发现应该作为一次性程序完成,而不是在后台连续运行 - 除了减慢其他蓝牙连接速度外,它会快速耗尽电池。