Kyou/bluetooth #22

Merged
Asura146 merged 2 commits from kyou/Bluetooth into main 2024-01-22 17:15:52 +00:00

View File

@ -260,11 +260,13 @@ public class TestService extends Service {
} }
String deviceHardwareAddress = device.getAddress(); // MAC address String deviceHardwareAddress = device.getAddress(); // MAC address
String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", "none");
if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) { if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
//Do something if connected //Do something if connected
Log.d("BT", "Device connected"); Log.d("BT", "Device connected");
String registeredId = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getString("bluetooth_device_id", "none");
Log.d("BT_Judge", "Registered: " + registeredId); Log.d("BT_Judge", "Registered: " + registeredId);
@ -280,8 +282,12 @@ public class TestService extends Service {
} else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) { } else if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) {
//Do something if disconnected //Do something if disconnected
if (deviceHardwareAddress.equals(registeredId)) {
Log.d("BT_Judge", "登録済み切断");
e.putBoolean("connection_status",false);
}
Log.d("BT", "Device disconnected"); Log.d("BT", "Device disconnected");
e.putBoolean("connection_status",false);
e.apply(); e.apply();
NotificationBluetooth(getApplicationContext()); NotificationBluetooth(getApplicationContext());