a ia esta com erro 429 mas esta a funcionar (segundo o anti gravity)
This commit is contained in:
@@ -8,6 +8,7 @@ import android.widget.AutoCompleteTextView;
|
||||
import android.widget.Button;
|
||||
import android.widget.DatePicker;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
@@ -38,16 +39,20 @@ public final class FragmentScheduleAppointmentBinding implements ViewBinding {
|
||||
@NonNull
|
||||
public final AutoCompleteTextView spinnerDoctor;
|
||||
|
||||
@NonNull
|
||||
public final TextView textDoctorSchedule;
|
||||
|
||||
private FragmentScheduleAppointmentBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull Button btnConfirmAppointment, @NonNull DatePicker datePicker,
|
||||
@NonNull TextInputEditText editReason, @NonNull RecyclerView recyclerTimeSlots,
|
||||
@NonNull AutoCompleteTextView spinnerDoctor) {
|
||||
@NonNull AutoCompleteTextView spinnerDoctor, @NonNull TextView textDoctorSchedule) {
|
||||
this.rootView = rootView;
|
||||
this.btnConfirmAppointment = btnConfirmAppointment;
|
||||
this.datePicker = datePicker;
|
||||
this.editReason = editReason;
|
||||
this.recyclerTimeSlots = recyclerTimeSlots;
|
||||
this.spinnerDoctor = spinnerDoctor;
|
||||
this.textDoctorSchedule = textDoctorSchedule;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -107,8 +112,14 @@ public final class FragmentScheduleAppointmentBinding implements ViewBinding {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.text_doctor_schedule;
|
||||
TextView textDoctorSchedule = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textDoctorSchedule == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentScheduleAppointmentBinding((LinearLayout) rootView, btnConfirmAppointment,
|
||||
datePicker, editReason, recyclerTimeSlots, spinnerDoctor);
|
||||
datePicker, editReason, recyclerTimeSlots, spinnerDoctor, textDoctorSchedule);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
|
||||
Reference in New Issue
Block a user