例外キャッチを追加

This commit is contained in:
ろむねこ 2024-01-17 16:54:02 +09:00
parent 8dd1745c1f
commit ae7af9d01a
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -207,10 +207,13 @@ public class HomeFragment extends Fragment implements OnEventListener{
FrameLayout fl;
try {
tv = requireView().findViewById(R.id.situation);
fl = getView().findViewById(R.id.situation_bg);
fl = requireView().findViewById(R.id.situation_bg);
} catch (NullPointerException e) {
Log.d("HomeFragment", "updateUiState: view is null");
return;
} catch (Exception e) {
Log.d("HomeFragment", "updateUiState: unknown error");
return;
}
String get_on = "\n乗車状態";
String get_off = "\n降車状態";