changessituationを廃止

This commit is contained in:
ろむねこ 2024-01-19 20:34:55 +09:00
parent b28911f386
commit 3b73621fb9
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -131,15 +131,12 @@ public class MainActivity extends AppCompatActivity {
Log.d("BT", "Permission to connect bluetooth devices granted"); Log.d("BT", "Permission to connect bluetooth devices granted");
} }
registerReceiver(receiver, intentFilter); registerReceiver(receiver, intentFilter);
changessituation();
} }
@Override @Override
protected void onResume() { protected void onResume() {
super.onResume(); super.onResume();
changessituation();
Log.d("onResume", "called"); Log.d("onResume", "called");
Log.d("onResume", "mDocRef is null");
firebaselink(); firebaselink();
} }
@ -162,7 +159,7 @@ public class MainActivity extends AppCompatActivity {
//FireBaseで更新された情報の判定 //FireBaseで更新された情報の判定
if (documentSnapshot.getBoolean("isReported") == false) {//isReportedがfalseのとき=サイト上で保護者ボタンが押されたとき if (documentSnapshot.getBoolean("isReported") == false) {//isReportedがfalseのとき=サイト上で保護者ボタンが押されたとき
if (fragment instanceof HomeFragment) {//fragementがHomeFragmentのインスタンスかの判定 if (fragment instanceof HomeFragment) {//fragementがHomeFragmentのインスタンスかの判定
changessituation();// changessituation()メソッドを処理アプリ側の乗降状態を変化 ((HomeFragment) fragment).onEvent(!isInCar);//onEvent()メソッドを処理HomeFragmentのonEvent()メソッドを処理
} }
} else if (isInCar) {//第三者ボタンが押されたときにisInCarがtrueのとき乗車状態のときいたずら防止 } else if (isInCar) {//第三者ボタンが押されたときにisInCarがtrueのとき乗車状態のときいたずら防止
int importance = NotificationManager.IMPORTANCE_DEFAULT; int importance = NotificationManager.IMPORTANCE_DEFAULT;
@ -313,12 +310,12 @@ 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);//TestServiceを起動 // startService(intent);//TestServiceを起動
} // }
} }