各種コメントを追加

現時点で把握しているバグ
・降車状態のときにQRリーダを起動し戻るとアプリの表示が乗車状態になる
・乗車状態のときにsettingsへ移動し戻るとアプリの表示が降車状態になる
This commit is contained in:
it232115 2024-01-19 02:33:56 +09:00
parent c196399c24
commit 25bf332fa9
2 changed files with 44 additions and 40 deletions

View File

@ -149,18 +149,19 @@ public class MainActivity extends AppCompatActivity {
changessituation(); changessituation();
Log.d("onResume", "called"); Log.d("onResume", "called");
Log.d("onResume", "mDocRef is null"); Log.d("onResume", "mDocRef is null");
//共有プリファレンス全体の準備
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE); SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
String IdPref = sharedPreferences.getString("ID", null); String IdPref = sharedPreferences.getString("ID", null);////アプリに記録されているIDの取得
if (IdPref == null) { if (IdPref == null) {//FireBaseのIDがアプリに登録されているとき
Log.d("onResume", "ID not initialized."); Log.d("onResume", "ID not initialized.");
} else { } else {
mDocRef = FirebaseFirestore.getInstance().document("status/" + IdPref);//現在の位置を取得 mDocRef = FirebaseFirestore.getInstance().document("status/" + IdPref);//現在の位置を取得
initNotification(mDocRef); initNotification(mDocRef);//現在の位置を引数に initNotification()を処理
} }
} }
private void initNotification(DocumentReference mDocRef) { private void initNotification(DocumentReference mDocRef) {//サイト上で押されたボタンの管理
// Init pref // 共有プリファレンス全体の準備
SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE); SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE);
mDocRef.addSnapshotListener(this, new EventListener<DocumentSnapshot>() { mDocRef.addSnapshotListener(this, new EventListener<DocumentSnapshot>() {
@ -171,27 +172,28 @@ public class MainActivity extends AppCompatActivity {
//共有プリファレンス 書き込みの準備 //共有プリファレンス 書き込みの準備
SharedPreferences.Editor E = sharedPreferences.edit(); SharedPreferences.Editor E = sharedPreferences.edit();
//車の乗り降りを管理するtrue=乗車false=降車 //車の乗り降りを管理するtrue=乗車false=降車
if (documentSnapshot.exists()) { if (documentSnapshot.exists()) {//exists()でdocumentSnapshotの中のファイルの存在の確認
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragmentContainerView); Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragmentContainerView);
Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス
E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定 E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
E.apply();//確定処理 E.apply();//確定処理
Log.d("nt", "レスポンスを検知しました1"); Log.d("nt", "レスポンスを検知しました1");
if (documentSnapshot.getBoolean("isReported")==false ) { //FireBaseで更新された情報の判定
if (fragment instanceof HomeFragment) { if (documentSnapshot.getBoolean("isReported")==false ) {//isReportedがfalseのとき=サイト上で保護者ボタンが押されたとき
changessituation(); if (fragment instanceof HomeFragment) {//fragementがHomeFragmentのインスタンスかの判定
changessituation();// changessituation()メソッドを処理アプリ側の乗降状態を変化
} }
}else if(isInCar){ }else if(isInCar){//第三者ボタンが押されたときにisInCarがtrueのとき乗車状態のときいたずら防止
int importance = NotificationManager.IMPORTANCE_DEFAULT; int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通報通知", importance); NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通報通知", importance);
channel.setDescription("第3者からの通報を検知しました"); channel.setDescription("第3者からの通報を検知しました");
NotificationManager notificationManager = getSystemService(NotificationManager.class); NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel); notificationManager.createNotificationChannel(channel);
Log.d("nt", "レスポンスを検知しました2"); Log.d("nt", "レスポンスを検知しました2");
notifyMain(); notifyMain();// notifyMain()メソッドを処理通知のメソッド
ResetReported(); ResetReported();// ResetReported();メソッドを処理FireBaseのisReportedをfalseにする
} else{ } else{//第三者ボタンが押されたときにisInCarがfalseのとき=降車状態のとき
ResetReported(); ResetReported();// ResetReported();を処理FireBaseのisReportedをfalseにする
Log.d("nt", "何もなし" ); Log.d("nt", "何もなし" );
} }
} }
@ -268,14 +270,14 @@ public class MainActivity extends AppCompatActivity {
} }
public void ResetReported(){ public void ResetReported(){//FireBaseのisReportedをfalseに初期化するメソッド
//共有プリファレンス全体の準備
SharedPreferences sharedPreferences = MainActivity.this.getSharedPreferences("app_situation", MODE_PRIVATE); SharedPreferences sharedPreferences = MainActivity.this.getSharedPreferences("app_situation", MODE_PRIVATE);
String IdPref = sharedPreferences.getString("ID", null); String IdPref = sharedPreferences.getString("ID", null);//アプリに記録されているIDの取得
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
DocumentReference isReported = db.collection("status").document(IdPref); DocumentReference isReported = db.collection("status").document(IdPref);//更新するドキュメントとの紐づけ
Map<String, Boolean> DEFAULT_ITEM = new HashMap<>();//mapの宣言 Map<String, Boolean> DEFAULT_ITEM = new HashMap<>();//mapの宣言
isReported.update("isReported",false).addOnSuccessListener(new OnSuccessListener<Void>() { isReported.update("isReported",false).addOnSuccessListener(new OnSuccessListener<Void>() {//isReportedをfalseに更新
@Override @Override
public void onSuccess(Void unused) { public void onSuccess(Void unused) {
Log.d(TAG, "DocumentSnapshot successfully updated!"); Log.d(TAG, "DocumentSnapshot successfully updated!");
@ -289,7 +291,8 @@ public class MainActivity extends AppCompatActivity {
} }
public void changessituation(){ public void changessituation(){//乗降状態の管理をするためにHomeFramgentを呼び出すメソッド
SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE); SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE);
//共有プリファレンス 書き込みの準備 //共有プリファレンス 書き込みの準備
SharedPreferences.Editor E = sharedPreferences.edit(); SharedPreferences.Editor E = sharedPreferences.edit();
@ -298,10 +301,10 @@ public class MainActivity extends AppCompatActivity {
((HomeFragment) fragment).onEvent(!isInCar); ((HomeFragment) fragment).onEvent(!isInCar);
} }
@Override @Override
public void onStop() { public void onStop() {//アプリをバックグラウンドにした時のメソッド
super.onStop(); super.onStop();
Intent intent = new Intent(getApplication(), TestService.class); Intent intent = new Intent(getApplication(), TestService.class);
startService(intent); startService(intent);//TestServiceを起動
} }

View File

@ -40,23 +40,24 @@ public class TestService extends Service {
@Override @Override
public int onStartCommand(Intent intent, int flags, int startId) { public int onStartCommand(Intent intent, int flags, int startId) {
//共有プリファレンス全体の準備
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE); SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
String IdPref = sharedPreferences.getString("ID", null); String IdPref = sharedPreferences.getString("ID", null);//アプリに記録されているIDの取得
if (IdPref == null) { if (IdPref == null) {//FireBaseのIDがアプリに登録されているとき
Log.d("onResume", "ID not initialized."); Log.d("onResume", "ID not initialized.");
} else { } else {
mDocRef = FirebaseFirestore.getInstance().document("status/" + IdPref);//現在の位置を取得 mDocRef = FirebaseFirestore.getInstance().document("status/" + IdPref);//現在の位置を取得
initNotification(mDocRef); initNotification(mDocRef);//現在の位置を引数に initNotification()を処理
} }
return flags; return flags;
} }
private void initNotification(DocumentReference mDocRef) { private void initNotification(DocumentReference mDocRef) {//サイト上で押されたボタンの管理
// Init pref // 共有プリファレンス全体の準備
SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE); SharedPreferences sharedPreferences = getSharedPreferences("app_situation",MODE_PRIVATE);
//車の乗り降りを管理するtrue=乗車false=降車
mDocRef.addSnapshotListener( new EventListener<DocumentSnapshot>() { mDocRef.addSnapshotListener( new EventListener<DocumentSnapshot>() {//exists()でdocumentSnapshotの中のファイルの存在の確認
@Override @Override
public void onEvent(@Nullable DocumentSnapshot documentSnapshot, @Nullable FirebaseFirestoreException e) { public void onEvent(@Nullable DocumentSnapshot documentSnapshot, @Nullable FirebaseFirestoreException e) {
@ -64,22 +65,22 @@ public class TestService extends Service {
//共有プリファレンス 書き込みの準備 //共有プリファレンス 書き込みの準備
SharedPreferences.Editor E = sharedPreferences.edit(); SharedPreferences.Editor E = sharedPreferences.edit();
//車の乗り降りを管理するtrue=乗車false=降車 //車の乗り降りを管理するtrue=乗車false=降車
if (documentSnapshot.exists()) { if (documentSnapshot.exists()) {//exists()でdocumentSnapshotの中のファイルの存在の確認
Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス
E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定 E.putBoolean("isInCarPref", documentSnapshot.getBoolean("isInCar"));//乗降状態の判定
E.apply();//確定処理 E.apply();//確定処理
Log.d("nt", "レスポンスを検知しました1"); Log.d("nt", "レスポンスを検知しました1");
if (documentSnapshot.getBoolean("isReported")==true && isInCar==true) { if (documentSnapshot.getBoolean("isReported")==true && isInCar==true) {//isReportedがtrueかつisInCarがtrueのとき=サイト上で第三者ボタンが押されたときに乗車状態のとき
ResetReported(); ResetReported();// ResetReported();を処理FireBaseのisReportedをfalseにする
int importance = NotificationManager.IMPORTANCE_DEFAULT; int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通報通知", importance); NotificationChannel channel = new NotificationChannel("CHANNEL_ID", "通報通知", importance);
channel.setDescription("第3者からの通報を検知しました"); channel.setDescription("第3者からの通報を検知しました");
NotificationManager notificationManager = getSystemService(NotificationManager.class); NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel); notificationManager.createNotificationChannel(channel);
Log.d("nt", "レスポンスを検知しました2"); Log.d("nt", "レスポンスを検知しました2");
notifyMain(); notifyMain();// notifyMain()メソッドを処理通知のメソッド
} else{ } else{//それ以外のとき
ResetReported(); ResetReported();//ResetReported();を処理FireBaseのisReportedをfalseにする
Log.d("nt", "何もなし" ); Log.d("nt", "何もなし" );
} }
} }
@ -114,15 +115,15 @@ public class TestService extends Service {
notificationManager.notify(R.string.app_name, builder.build()); notificationManager.notify(R.string.app_name, builder.build());
} }
public void ResetReported(){ public void ResetReported(){//FireBaseのisReportedをfalseに初期化するメソッド
//共有プリファレンス全体の準備
SharedPreferences sharedPreferences =getSharedPreferences("app_situation", MODE_PRIVATE); SharedPreferences sharedPreferences =getSharedPreferences("app_situation", MODE_PRIVATE);
String IdPref = sharedPreferences.getString("ID", null); String IdPref = sharedPreferences.getString("ID", null);//アプリに記録されているIDの取得
db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ db = FirebaseFirestore.getInstance();//Firebaseとの紐づけ
DocumentReference isReported = db.collection("status").document(IdPref); DocumentReference isReported = db.collection("status").document(IdPref);//更新するドキュメントとの紐づけ
Map<String, Boolean> DEFAULT_ITEM = new HashMap<>();//mapの宣言 Map<String, Boolean> DEFAULT_ITEM = new HashMap<>();//mapの宣言
DEFAULT_ITEM.put("isReported", false); DEFAULT_ITEM.put("isReported", false);
isReported.update("isReported",false).addOnSuccessListener(new OnSuccessListener<Void>() { isReported.update("isReported",false).addOnSuccessListener(new OnSuccessListener<Void>() {//isReportedをfalseに更新
@Override @Override
public void onSuccess(Void unused) { public void onSuccess(Void unused) {
Log.d(TAG, "DocumentSnapshot successfully updated!"); Log.d(TAG, "DocumentSnapshot successfully updated!");