不要なインスタンスを作成しないように

This commit is contained in:
ろむねこ 2024-07-11 15:47:14 +09:00
parent da545e4a5e
commit 0a2cabd0af
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -266,7 +266,6 @@ public class TestService extends Service {
// ----------------------------------------------------- // -----------------------------------------------------
SharedPreferences pref = getSharedPreferences("Bluetooth_situation", MODE_PRIVATE); SharedPreferences pref = getSharedPreferences("Bluetooth_situation", MODE_PRIVATE);
SharedPreferences.Editor e = pref.edit();
String action = intent.getAction(); // may need to chain this to a recognizing function String action = intent.getAction(); // may need to chain this to a recognizing function
boolean isInCar = pref.getBoolean("isInCarPref", false); boolean isInCar = pref.getBoolean("isInCarPref", false);
if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) { if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {