2023-12-18 07:07:21 +00:00
|
|
|
|
package com.example.childguard;
|
|
|
|
|
|
2024-01-19 03:53:01 +00:00
|
|
|
|
import android.content.SharedPreferences;
|
2023-12-18 07:07:21 +00:00
|
|
|
|
import android.os.Bundle;
|
2023-12-19 03:21:17 +00:00
|
|
|
|
import android.util.Log;
|
2023-12-18 07:07:21 +00:00
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.ViewGroup;
|
2023-12-19 04:31:42 +00:00
|
|
|
|
import android.widget.FrameLayout;
|
2023-12-19 03:21:17 +00:00
|
|
|
|
import android.widget.TextView;
|
2023-12-18 07:07:21 +00:00
|
|
|
|
|
2024-01-19 01:24:05 +00:00
|
|
|
|
import androidx.core.content.res.ResourcesCompat;
|
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
|
|
|
import androidx.fragment.app.FragmentManager;
|
|
|
|
|
import androidx.fragment.app.FragmentTransaction;
|
2024-01-12 02:31:27 +00:00
|
|
|
|
|
2023-12-18 07:07:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* A simple {@link Fragment} subclass.
|
|
|
|
|
* Use the {@link HomeFragment#newInstance} factory method to
|
|
|
|
|
* create an instance of this fragment.
|
|
|
|
|
*/
|
2024-01-17 07:25:31 +00:00
|
|
|
|
public class HomeFragment extends Fragment implements OnEventListener{
|
2024-01-15 01:04:53 +00:00
|
|
|
|
|
2023-12-18 07:07:21 +00:00
|
|
|
|
// TODO: Rename parameter arguments, choose names that match
|
|
|
|
|
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
|
|
|
|
private static final String ARG_PARAM1 = "param1";
|
|
|
|
|
private static final String ARG_PARAM2 = "param2";
|
|
|
|
|
|
|
|
|
|
// TODO: Rename and change types of parameters
|
2024-01-16 01:51:13 +00:00
|
|
|
|
private String str_key;
|
2023-12-18 07:07:21 +00:00
|
|
|
|
private String mParam2;
|
|
|
|
|
|
2024-01-17 07:25:31 +00:00
|
|
|
|
|
2023-12-18 07:07:21 +00:00
|
|
|
|
public HomeFragment() {
|
|
|
|
|
// Required empty public constructor
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Use this factory method to create a new instance of
|
|
|
|
|
* this fragment using the provided parameters.
|
|
|
|
|
*
|
|
|
|
|
* @param param1 Parameter 1.
|
|
|
|
|
* @param param2 Parameter 2.
|
|
|
|
|
* @return A new instance of fragment BlankFragment.
|
|
|
|
|
*/
|
|
|
|
|
// TODO: Rename and change types and number of parameters
|
|
|
|
|
public static HomeFragment newInstance(String param1, String param2) {
|
|
|
|
|
HomeFragment fragment = new HomeFragment();
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
|
args.putString(ARG_PARAM1, param1);
|
|
|
|
|
args.putString(ARG_PARAM2, param2);
|
|
|
|
|
fragment.setArguments(args);
|
|
|
|
|
return fragment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
|
super.onCreate(savedInstanceState);
|
2024-01-18 21:19:04 +00:00
|
|
|
|
|
2023-12-18 07:07:21 +00:00
|
|
|
|
if (getArguments() != null) {
|
2024-01-16 01:51:13 +00:00
|
|
|
|
// mParam1 = getArguments().getString(ARG_PARAM1);
|
2023-12-18 07:07:21 +00:00
|
|
|
|
mParam2 = getArguments().getString(ARG_PARAM2);
|
|
|
|
|
}
|
2024-01-18 21:19:04 +00:00
|
|
|
|
|
2023-12-18 07:07:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
|
|
|
Bundle savedInstanceState) {
|
2024-01-15 01:04:53 +00:00
|
|
|
|
View view = inflater.inflate(R.layout.fragment_home, container, false);
|
2024-01-17 03:07:01 +00:00
|
|
|
|
|
2024-01-11 07:30:02 +00:00
|
|
|
|
return view;
|
2023-12-18 07:07:21 +00:00
|
|
|
|
}
|
2024-01-17 07:25:31 +00:00
|
|
|
|
|
|
|
|
|
|
2024-01-16 07:00:42 +00:00
|
|
|
|
@Override
|
|
|
|
|
public void onResume() {
|
|
|
|
|
super.onResume();
|
|
|
|
|
Log.d("HomeFragment", "onResume: called");
|
2024-01-19 03:53:01 +00:00
|
|
|
|
this.updateUiState(getIsInCarLocal());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean getIsInCarLocal() {
|
|
|
|
|
SharedPreferences pref = requireActivity().getSharedPreferences("app_situation", requireActivity().MODE_PRIVATE);
|
|
|
|
|
return pref.getBoolean("isInCar", false);
|
2024-01-16 07:00:42 +00:00
|
|
|
|
}
|
2024-01-15 01:04:53 +00:00
|
|
|
|
|
2024-01-11 07:30:02 +00:00
|
|
|
|
//画面遷移メソッド
|
2024-01-15 01:04:53 +00:00
|
|
|
|
private void replaceFragment(Fragment fragment) {
|
2024-01-11 07:30:02 +00:00
|
|
|
|
// フラグメントマネージャーの取得
|
|
|
|
|
FragmentManager manager = getParentFragmentManager(); // アクティビティではgetSupportFragmentManager()?
|
|
|
|
|
// フラグメントトランザクションの開始
|
|
|
|
|
FragmentTransaction transaction = manager.beginTransaction();
|
|
|
|
|
// レイアウトをfragmentに置き換え(追加)
|
|
|
|
|
transaction.replace(R.id.fragmentContainerView, fragment);
|
|
|
|
|
// 置き換えのトランザクションをバックスタックに保存する
|
|
|
|
|
transaction.addToBackStack(null);
|
|
|
|
|
// フラグメントトランザクションをコミット
|
|
|
|
|
transaction.commit();
|
2023-12-19 03:21:17 +00:00
|
|
|
|
}
|
2024-01-17 03:16:13 +00:00
|
|
|
|
|
2024-01-18 15:57:33 +00:00
|
|
|
|
private boolean updateUiState(boolean isInCar) {
|
2024-01-17 07:25:31 +00:00
|
|
|
|
Log.d("HomeFragment", "updateUiState: called");
|
|
|
|
|
// Init
|
|
|
|
|
TextView tv;
|
|
|
|
|
FrameLayout fl;
|
|
|
|
|
try {
|
|
|
|
|
tv = requireView().findViewById(R.id.situation);
|
2024-01-17 07:54:02 +00:00
|
|
|
|
fl = requireView().findViewById(R.id.situation_bg);
|
2024-01-17 07:25:31 +00:00
|
|
|
|
} catch (NullPointerException e) {
|
|
|
|
|
Log.d("HomeFragment", "updateUiState: view is null");
|
2024-01-17 09:58:25 +00:00
|
|
|
|
return false;
|
|
|
|
|
} catch (IllegalStateException e) {
|
|
|
|
|
Log.d("HomeFragment", "updateUiState: view is not attached");
|
2024-01-18 15:57:33 +00:00
|
|
|
|
getParentFragmentManager().beginTransaction().replace(R.id.fragmentContainerView, HomeFragment.newInstance("test", "test")).commit();
|
|
|
|
|
updateUiState(isInCar);
|
2024-01-17 09:58:25 +00:00
|
|
|
|
return false;
|
2024-01-17 07:25:31 +00:00
|
|
|
|
}
|
2024-01-16 07:00:42 +00:00
|
|
|
|
String get_on = "\n乗車状態";
|
|
|
|
|
String get_off = "\n降車状態";
|
2024-01-18 15:57:33 +00:00
|
|
|
|
if (!isInCar) {
|
2024-01-16 07:00:42 +00:00
|
|
|
|
//乗車状態にする
|
|
|
|
|
fl.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.frame_style_orange, null));
|
|
|
|
|
tv.setText(get_on);
|
2024-01-17 07:25:31 +00:00
|
|
|
|
} else {
|
|
|
|
|
//降車状態にする
|
|
|
|
|
fl.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.frame_style, null));
|
|
|
|
|
tv.setText(get_off);
|
2024-01-16 07:00:42 +00:00
|
|
|
|
}
|
2024-01-17 09:58:25 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2024-01-17 07:25:31 +00:00
|
|
|
|
}
|
2024-01-16 07:00:42 +00:00
|
|
|
|
|
2024-01-17 07:25:31 +00:00
|
|
|
|
@Override
|
2024-01-18 15:57:33 +00:00
|
|
|
|
public boolean onEvent(boolean isInCar) {
|
2024-01-17 07:25:31 +00:00
|
|
|
|
Log.d("HomeFragment", "onEvent: called");
|
2024-01-18 15:57:33 +00:00
|
|
|
|
|
|
|
|
|
return updateUiState(isInCar);
|
2024-01-16 07:00:42 +00:00
|
|
|
|
}
|
2024-01-17 03:07:01 +00:00
|
|
|
|
}
|
|
|
|
|
|