我试图在我的应用程序启动时确定配对设备是否已连接。实际上,主应用程序为我提供了一个MAC地址,无论是否连接,我都必须做出响应。
BroadcastReceiver不能完全解决问题,因为如果用户在启动应用程序之前启动与设备的连接,我将无法知道我是否已连接到设备。
我在论坛上发现了这个问题:How to programmatically tell if a Bluetooth device is connected?
在应用程序启动时无法检索已连接设备的列表。蓝牙API仅允许您收听连接更改。
但是我认为这不再准确了,因为使用此代码:
public class cServiceListener implements BluetoothProfile.ServiceListener {
private static final int[] states={ BluetoothProfile.STATE_DISCONNECTING,
BluetoothProfile.STATE_DISCONNECTED,
BluetoothProfile.STATE_CONNECTED,
BluetoothProfile.STATE_CONNECTING};
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR2)
@Override
public void onServiceConnected(int profile, BluetoothProfile bluetoothProfile) {
//List<BluetoothDevice> Devices=bluetoothProfile.getDevicesMatchingConnectionStates(states);
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
Set<BluetoothDevice> devices = mBluetoothAdapter.getBondedDevices();
Log.i("myTag","\n\n<==============profile connexion state =============> : "+ mBluetoothAdapter.getProfileConnectionState(1));
for (BluetoothDevice loop:devices){
Log.i("myTag","Nom du device :" +loop.getName()+" Etat du Device:"+bluetoothProfile.getConnectionState(loop)
+ " Type du device : "+ loop.getType() + " Classe du device : " + loop.getBluetoothClass().toString() );
}
}
@Override
public void onServiceDisconnected(int profile) {
}}
我能够判断某些设备是否已连接,但并非所有设备都已连接!! 我在便携式扬声器和其他负责通话和声音的设备上尝试使用该代码,并且可以正常工作:如果设备已连接,则返回2,否则返回0。 但是,当我在我的真实目标(这是一辆汽车)上尝试时,它随时会返回0。测试车只能接听电话(您无法通过蓝牙连接播放音乐,但会过时)。因此,我认为使用更现代的汽车可以工作。.
首先,我以为这辆车使用BLE技术,所以我尝试使用此代码
List<BluetoothDevice> devices = bluetoothManager.getConnectedDevices(BluetoothProfile.GATT);
Log.d("myTag","\n Taille de la liste : " + devices.size());
for(BluetoothDevice device : devices) {
if(device.getType() == BluetoothDevice.DEVICE_TYPE_LE) {
Log.d("myTag","\n BLE <===> Nom du device :" + device.getName());
}
Log.d("myTag","\n<====NONE BLE=====> // \n\n Nom du device :" + device.getName()+"\n\n");
}
但是实际上这不是重点,这是行不通的。 这很奇怪,因为
mBluetoothAdapter.getProfileConnectionState(1)
仅在连接汽车时返回正确的值。 我真的不知道该怎么办,为什么 bluetoothProfile.getConnectionState()返回错误的值。 如果有人有任何想法,我将很高兴知道。
答案 0 :(得分:0)
最后,我完成了这项工作。蓝牙汽车被认为像耳机一样,所以我专注于它:
public static void startListening() {
final BroadcastReceiver mBroadcastReceiver3 = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Bundle info = intent.getExtras();
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
String deviceAddress = device.getAddress();
if (action.equals( BluetoothDevice.ACTION_ACL_CONNECTED)){
//do some stuff with connected device
}
if (action.equals(BluetoothDevice.ACTION_ACL_DISCONNECTED)){
// do things with disconnected
}
}
};}