我正在开发一个使用蓝牙连接的 Android 应用程序,我想将设备中的数据读取到应用程序中,但在读取数据之前需要知道我是否已连接到设备。
下面是我拥有的启动蓝牙设置的代码,我可以在其中配对设备。如何验证我已配对的设备是否与应用程序建立了活动连接并准备好发送数据?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_connect);
Button btn = (Button) findViewById(R.id.connect_button);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intentOpenBluetoothSettings = new Intent();
intentOpenBluetoothSettings.setAction(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);
startActivity(intentOpenBluetoothSettings);
}
});
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
pairedDevices = mBluetoothAdapter.getBondedDevices();