名称修正
This commit is contained in:
parent
8164ce8bd6
commit
f4f6dc0107
|
@ -1,6 +1,5 @@
|
||||||
package com.example.childguard;
|
package com.example.childguard;
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.app.NotificationChannel;
|
import android.app.NotificationChannel;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
||||||
import android.app.PendingIntent;
|
import android.app.PendingIntent;
|
||||||
|
@ -170,18 +169,18 @@ public class TestService extends Service {
|
||||||
if (isInCar) {//isReportedがtrue=サイト上で乗車状態のとき
|
if (isInCar) {//isReportedがtrue=サイト上で乗車状態のとき
|
||||||
if (documentSnapshot.getBoolean("isReported")) {
|
if (documentSnapshot.getBoolean("isReported")) {
|
||||||
//ここスタート(リサイクル)
|
//ここスタート(リサイクル)
|
||||||
ResetReported();// ResetReported();を処理→FireBaseのisReportedをfalseにする
|
resetReported();// ResetReported();を処理→FireBaseのisReportedをfalseにする
|
||||||
Notification(getApplicationContext(), REPORTED_NOTIFICATION);//通知を行うメソッド
|
Notification(getApplicationContext(), REPORTED_NOTIFICATION);//通知を行うメソッド
|
||||||
}
|
}
|
||||||
} else {//isReportedがfalse=サイト上で降車状態のとき
|
} else {//isReportedがfalse=サイト上で降車状態のとき
|
||||||
ResetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
resetReported();//ResetReported();を処理→FireBaseのisReportedをfalseにする
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ResetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
|
public void resetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
|
||||||
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
|
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
|
||||||
DocumentReference isReported = db.collection("status").document(this.userId);
|
DocumentReference isReported = db.collection("status").document(this.userId);
|
||||||
//isReportedをfalseに更新
|
//isReportedをfalseに更新
|
||||||
|
|
Loading…
Reference in New Issue
Block a user