ラジオボタン切り替え時にリストを更新するように

This commit is contained in:
ろむねこ 2023-12-11 13:12:08 +09:00
parent 6839e60ff9
commit 29a77307a1
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -40,7 +40,7 @@ public class DebugSharedPrefEditorFragment extends Fragment {
@Inject
SharedPref sharedPref;
SharedPrefType sharedPrefType = SharedPrefType.COMMON;
SharedPrefType sharedPrefType = null;
public DebugSharedPrefEditorFragment() {
// Required empty public constructor
@ -90,8 +90,10 @@ public class DebugSharedPrefEditorFragment extends Fragment {
((RadioGroup) view.findViewById(R.id.radioGroupPrefType)).setOnCheckedChangeListener((group, checkedId) -> {
if (checkedId == R.id.radioButtonCommon) {
sharedPrefType = SharedPrefType.COMMON;
updateList(prefItemTextView);
} else if (checkedId == R.id.radioButtonUserData) {
sharedPrefType = SharedPrefType.USERDATA;
updateList(prefItemTextView);
} else {
Log.e("DebugSharedPrefEditorFragment", "radioButtonのIDが不正です");
}