変数名を型が分かるようにさらにさらに一部変更しました

This commit is contained in:
Ekamo-11 2024-07-05 11:53:29 +09:00
parent 34bbf40951
commit 55f5033fc6

View File

@ -60,11 +60,11 @@ public class SetUpActivity extends FragmentActivity
String stringHourOfDay; String stringHourOfDay;
String stringMinute; String stringMinute;
Button setFirstDay; Button buttonFirstDay;
Button setSecondDay; Button buttonSecondDay;
Button setThirdDay; Button buttonThirdDay;
Button setStartTimeButton; Button buttonStartTimeButton;
Button setEndTimeButton; Button buttonEndTimeButton;
@ -79,13 +79,13 @@ public class SetUpActivity extends FragmentActivity
textViewTeacherName = findViewById(R.id.teacherName); //先生の名前 textViewTeacherName = findViewById(R.id.teacherName); //先生の名前
textViewStartPoint = findViewById(R.id.startPoint); //開始地点 textViewStartPoint = findViewById(R.id.startPoint); //開始地点
setFirstDay = findViewById(R.id.setFirstDayButton); //1日目の日付 buttonFirstDay = findViewById(R.id.setFirstDayButton); //1日目の日付
setSecondDay = findViewById(R.id.setSecondDayButton); //2日目の日付 buttonSecondDay = findViewById(R.id.setSecondDayButton); //2日目の日付
setThirdDay = findViewById(R.id.setThirdDayButton); //3日目の日付 buttonThirdDay = findViewById(R.id.setThirdDayButton); //3日目の日付
setStartTimeButton = findViewById(R.id.startTimeSetButton); //開始時刻を設定するボタン buttonStartTimeButton = findViewById(R.id.startTimeSetButton); //開始時刻を設定するボタン
textViewStartTime = findViewById(R.id.startTime); //開始時刻を出力するTextView textViewStartTime = findViewById(R.id.startTime); //開始時刻を出力するTextView
setEndTimeButton = findViewById(R.id.endTimeSetButton); //終了時刻を設定するボタン buttonEndTimeButton = findViewById(R.id.endTimeSetButton); //終了時刻を設定するボタン
textViewEndTime = findViewById(R.id.endTime); //終了時刻を出力するTextView textViewEndTime = findViewById(R.id.endTime); //終了時刻を出力するTextView
RadioButton setTenMinute = findViewById(R.id.tenMinute); //訪問間隔10分 RadioButton setTenMinute = findViewById(R.id.tenMinute); //訪問間隔10分
@ -186,27 +186,27 @@ public class SetUpActivity extends FragmentActivity
}); });
setFirstDay.setOnClickListener(v ->{ buttonFirstDay.setOnClickListener(v ->{
intIsDateSelected = 1; intIsDateSelected = 1;
showDatePickerDialog(); //DatePickerの表示 showDatePickerDialog(); //DatePickerの表示
}); });
setSecondDay.setOnClickListener(v ->{ buttonSecondDay.setOnClickListener(v ->{
intIsDateSelected = 2; intIsDateSelected = 2;
showDatePickerDialog(); showDatePickerDialog();
}); });
setThirdDay.setOnClickListener(v ->{ buttonThirdDay.setOnClickListener(v ->{
intIsDateSelected = 3; intIsDateSelected = 3;
showDatePickerDialog(); showDatePickerDialog();
}); });
setStartTimeButton.setOnClickListener(v -> { buttonStartTimeButton.setOnClickListener(v -> {
intIsStartTimeSelected = 1; //ボタンの判別 intIsStartTimeSelected = 1; //ボタンの判別
showTimePickerDialog(); //TimePickerの表示 showTimePickerDialog(); //TimePickerの表示
}); });
setEndTimeButton.setOnClickListener(v -> { buttonEndTimeButton.setOnClickListener(v -> {
intIsStartTimeSelected = 2; intIsStartTimeSelected = 2;
showTimePickerDialog(); showTimePickerDialog();
}); });
@ -252,13 +252,13 @@ public class SetUpActivity extends FragmentActivity
stringMonth = String.format(Locale.JAPAN, "%02d", month + 1); // stringMonth = String.format(Locale.JAPAN, "%02d", month + 1); //
stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth); // stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth); //
firstDay = stringYear + stringMonth + stringDayOfMonth; firstDay = stringYear + stringMonth + stringDayOfMonth;
setFirstDay.setText(str); buttonFirstDay.setText(str);
} else if (intIsDateSelected == 2) { } else if (intIsDateSelected == 2) {
stringYear = String.valueOf(year); stringYear = String.valueOf(year);
stringMonth = String.format(Locale.JAPAN, "%02d", month + 1); stringMonth = String.format(Locale.JAPAN, "%02d", month + 1);
stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth); stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth);
secondDay = stringYear + stringMonth + stringDayOfMonth; secondDay = stringYear + stringMonth + stringDayOfMonth;
setSecondDay.setText(str); buttonSecondDay.setText(str);
} else if (intIsDateSelected == 3) { } else if (intIsDateSelected == 3) {
@ -266,7 +266,7 @@ public class SetUpActivity extends FragmentActivity
stringMonth = String.format(Locale.JAPAN, "%02d", month + 1); stringMonth = String.format(Locale.JAPAN, "%02d", month + 1);
stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth); stringDayOfMonth = String.format(Locale.JAPAN, "%02d", dayOfMonth);
thirdDay = stringYear + stringMonth + stringDayOfMonth; thirdDay = stringYear + stringMonth + stringDayOfMonth;
setThirdDay.setText(str); buttonThirdDay.setText(str);
} }
} }