Hotfix 1 #18
|
@ -131,13 +131,10 @@ public class MainActivity extends AppCompatActivity {
|
|||
Log.d("BT", "Permission to connect bluetooth devices granted");
|
||||
}
|
||||
registerReceiver(receiver, intentFilter);
|
||||
changessituation();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onResume() {
|
||||
super.onResume();
|
||||
changessituation();
|
||||
Log.d("onResume", "called");
|
||||
Log.d("onResume", "mDocRef is null");
|
||||
firebaselink();
|
||||
|
@ -162,7 +159,8 @@ public class MainActivity extends AppCompatActivity {
|
|||
//FireBaseで更新された情報の判定
|
||||
if (documentSnapshot.getBoolean("isReported") == false) {//isReportedがfalseのとき=サイト上で保護者ボタンが押されたとき
|
||||
if (fragment instanceof HomeFragment) {//fragementがHomeFragmentのインスタンスかの判定
|
||||
changessituation();// changessituation()メソッドを処理→アプリ側の乗降状態を変化
|
||||
// changessituation();// changessituation()メソッドを処理→アプリ側の乗降状態を変化
|
||||
((HomeFragment) fragment).onEvent(!isInCar);
|
||||
}
|
||||
} else if (isInCar) {//第三者ボタンが押されたときにisInCarがtrueのとき=乗車状態のとき→いたずら防止
|
||||
int importance = NotificationManager.IMPORTANCE_DEFAULT;
|
||||
|
@ -231,6 +229,7 @@ public class MainActivity extends AppCompatActivity {
|
|||
initNotification(mDocRef);//現在の位置を引数に initNotification()を処理
|
||||
|
||||
}
|
||||
super.onResume();
|
||||
}
|
||||
|
||||
public void ResetReported() {//FireBaseのisReportedをfalseに初期化するメソッド
|
||||
|
@ -302,17 +301,6 @@ public class MainActivity extends AppCompatActivity {
|
|||
notificationManager.notify(R.string.app_name, builder.build());//通知の表示
|
||||
}
|
||||
|
||||
|
||||
public void changessituation() {//乗降状態の管理をするためにHomeFramgentを呼び出すメソッド
|
||||
|
||||
SharedPreferences sharedPreferences = getSharedPreferences("app_situation", MODE_PRIVATE);
|
||||
//共有プリファレンス 書き込みの準備
|
||||
SharedPreferences.Editor E = sharedPreferences.edit();
|
||||
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragmentContainerView);
|
||||
Boolean isInCar = sharedPreferences.getBoolean("isInCarPref", false);//現在の乗降状態を保存する共有プリファレンス
|
||||
((HomeFragment) fragment).onEvent(!isInCar);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStop() {//アプリをバックグラウンドにした時のメソッド
|
||||
super.onStop();
|
||||
|
|
Loading…
Reference in New Issue
Block a user