TestServiceの全体的なリファクタリング #28

Merged
asura146 merged 73 commits from improve/refactor_service into main 2024-07-12 02:17:26 +00:00
Showing only changes of commit 8164ce8bd6 - Show all commits

View File

@ -171,7 +171,7 @@ public class TestService extends Service {
if (documentSnapshot.getBoolean("isReported")) {
//ここスタートリサイクル
ResetReported();// ResetReported();を処理FireBaseのisReportedをfalseにする
Notification(getApplicationContext());//通知を行うメソッド
Notification(getApplicationContext(), REPORTED_NOTIFICATION);//通知を行うメソッド
}
} else {//isReportedがfalse=サイト上で降車状態のとき
ResetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
@ -286,7 +286,7 @@ public class TestService extends Service {
@Override
public void run() {
if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//その後bluetoothを再接続したり降車状態になったりしていない置き去りが発生した可能性大
NotificationBluetooth(getApplicationContext());//通知を行うメソッド
Notification(context, BLUETOOTH_NOTIFICATION);
}
}