Housinnhennkougo #19

Merged
N-YOKU-jp merged 2 commits from housinnhennkougo into main 2024-01-19 05:12:11 +00:00

View File

@ -20,6 +20,7 @@ import android.os.Looper;
import android.os.Vibrator;
import android.preference.PreferenceManager;
import android.util.Log;
import android.widget.Toast;
import androidx.annotation.Nullable;
import androidx.core.app.ActivityCompat;
@ -85,9 +86,13 @@ public class TestService extends Service {
} else if(isInCar){//Bluetoothの切断後5分以上乗車状態のままのときQRコード読み取りを忘れているとき置き去り発生
ResetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
periodicTaskManager.startPeriodicTask();//通知のループをストップする
E.putBoolean("isInCarPref", !documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
E.apply();//確定処理
}else {
ResetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
periodicTaskManager.stopPeriodicTask();//5分毎に通知を行う
E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
E.apply();//確定処理
}
}
@ -211,7 +216,7 @@ public class TestService extends Service {
}
public class PeriodicTaskManager {//Bluetoothの切断後に乗車状態にならなかった場合に分毎に通知を送るメソッド
private static final long INTERVAL = 5 *60* 1000; //300秒
private static final long INTERVAL = 5 * 1000; //300秒
private final Handler handler;
private final Runnable periodicTask;
@ -232,7 +237,7 @@ public class TestService extends Service {
E.putInt("time",5);
E.apply();;
}else {
E.putInt("time",time*2);
E.putInt("time",time+5);
E.apply();
}
@ -251,6 +256,14 @@ public class TestService extends Service {
}
public void stopPeriodicTask() {
//共有プリファレンス全体の準備
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
int time=sharedPreferences.getInt("time",0);
//共有プリファレンス 書き込みの準備
SharedPreferences.Editor E = sharedPreferences.edit();
E.putInt("time",0);
E.apply();
// 定期的な処理の停止
handler.removeCallbacks(periodicTask);
}