我做了一个简单的安卓应用程序来连接蓝牙串行设备,closeBT
如果安卓没有连接,我想添加可能设备因为崩溃而超出范围。
我该怎么做呢?这段代码正确吗?
protected void onStart() {
super.onStart();
findBT(); //Check if bluettoth enable and paired devices
try {
openBT(); //open sockets,streams
} catch (IOException e) {
e.printStackTrace();
closeBT();
}
}