Merge pull request #19 from child-guardian/housinnhennkougo
Housinnhennkougo
This commit is contained in:
commit
ffd307233b
|
@ -20,6 +20,7 @@ import android.os.Looper;
|
||||||
import android.os.Vibrator;
|
import android.os.Vibrator;
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
import android.widget.Toast;
|
||||||
|
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.core.app.ActivityCompat;
|
import androidx.core.app.ActivityCompat;
|
||||||
|
@ -85,9 +86,13 @@ public class TestService extends Service {
|
||||||
} else if(isInCar){//Bluetoothの切断後5分以上乗車状態のままのとき→QRコード読み取りを忘れているとき→置き去り発生
|
} else if(isInCar){//Bluetoothの切断後5分以上乗車状態のままのとき→QRコード読み取りを忘れているとき→置き去り発生
|
||||||
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
||||||
periodicTaskManager.startPeriodicTask();//通知のループをストップする
|
periodicTaskManager.startPeriodicTask();//通知のループをストップする
|
||||||
|
E.putBoolean("isInCarPref", !documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
|
||||||
|
E.apply();//確定処理
|
||||||
}else {
|
}else {
|
||||||
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
||||||
periodicTaskManager.stopPeriodicTask();//5分毎に通知を行う
|
periodicTaskManager.stopPeriodicTask();//5分毎に通知を行う
|
||||||
|
E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
|
||||||
|
E.apply();//確定処理
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,7 +216,7 @@ public class TestService extends Service {
|
||||||
}
|
}
|
||||||
public class PeriodicTaskManager {//Bluetoothの切断後に乗車状態にならなかった場合に5分毎に通知を送るメソッド
|
public class PeriodicTaskManager {//Bluetoothの切断後に乗車状態にならなかった場合に5分毎に通知を送るメソッド
|
||||||
|
|
||||||
private static final long INTERVAL = 5 *60* 1000; //300秒
|
private static final long INTERVAL = 5 * 1000; //300秒
|
||||||
private final Handler handler;
|
private final Handler handler;
|
||||||
private final Runnable periodicTask;
|
private final Runnable periodicTask;
|
||||||
|
|
||||||
|
@ -232,7 +237,7 @@ public class TestService extends Service {
|
||||||
E.putInt("time",5);
|
E.putInt("time",5);
|
||||||
E.apply();;
|
E.apply();;
|
||||||
}else {
|
}else {
|
||||||
E.putInt("time",time*2);
|
E.putInt("time",time+5);
|
||||||
E.apply();
|
E.apply();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,6 +256,14 @@ public class TestService extends Service {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stopPeriodicTask() {
|
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);
|
handler.removeCallbacks(periodicTask);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user