tenho de ver se marca as coisas

This commit is contained in:
2026-05-11 17:16:58 +01:00
parent 5f1b849afe
commit b43829e11c
26 changed files with 371 additions and 212 deletions

View File

@@ -15,5 +15,21 @@ public class CuidaApplication extends Application {
.setPersistenceEnabled(true)
.build();
db.setFirestoreSettings(settings);
// Forçar Locale Português
java.util.Locale ptLocale = new java.util.Locale("pt", "PT");
java.util.Locale.setDefault(ptLocale);
android.content.res.Configuration config = new android.content.res.Configuration();
config.setLocale(ptLocale);
getResources().updateConfiguration(config, getResources().getDisplayMetrics());
// --- Global Theme Initialization ---
android.content.SharedPreferences themePrefs = getSharedPreferences("theme_prefs", android.content.Context.MODE_PRIVATE);
boolean isDarkMode = themePrefs.getBoolean("dark_mode", false);
if (isDarkMode) {
androidx.appcompat.app.AppCompatDelegate.setDefaultNightMode(androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_YES);
} else {
androidx.appcompat.app.AppCompatDelegate.setDefaultNightMode(androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_NO);
}
}
}

View File

@@ -60,16 +60,12 @@ public class MainActivity extends AppCompatActivity {
NavController navController = navHostFragment.getNavController();
NavigationUI.setupWithNavController(binding.navView, navController);
// Força o clique no Perfil com Transação Manual (Infalível)
// Corrige o comportamento da navegação para evitar sobreposição (Overlapping)
binding.navView.setOnItemSelectedListener(item -> {
if (item.getItemId() == R.id.navigation_profile) {
getSupportFragmentManager().beginTransaction()
.replace(R.id.nav_host_fragment, new com.example.cuida.ui.profile.ProfileFragment())
.addToBackStack(null)
.commit();
return true;
}
return NavigationUI.onNavDestinationSelected(item, navController);
// Limpa a backstack antes de navegar para evitar "fantasmas"
navController.popBackStack(item.getItemId(), true);
navController.navigate(item.getItemId());
return true;
});
}
}

View File

@@ -34,44 +34,27 @@ public class Medication {
this.userId = userId;
}
// --- Getters e Setters com compatibilidade para nomes antigos (name, time, dosage, notes) ---
// --- Getters e Setters ---
@PropertyName("nome")
public String getName() { return name; }
@PropertyName("nome")
public void setName(String name) { this.name = name; }
@PropertyName("name") // Suporte para dados antigos
public void setNameOld(String name) { if (this.name == null) this.name = name; }
@PropertyName("hora")
public String getTime() { return time; }
@PropertyName("hora")
public void setTime(String time) { this.time = time; }
@PropertyName("time") // Suporte para dados antigos
public void setTimeOld(String time) { if (this.time == null) this.time = time; }
@PropertyName("dosagem")
public String getDosage() { return dosage; }
@PropertyName("dosagem")
public void setDosage(String dosage) { this.dosage = dosage; }
@PropertyName("dosage") // Suporte para dados antigos
public void setDosageOld(String dosage) { if (this.dosage == null) this.dosage = dosage; }
@PropertyName("notas")
public String getNotes() { return notes; }
@PropertyName("notas")
public void setNotes(String notes) { this.notes = notes; }
@PropertyName("notes") // Suporte para dados antigos
public void setNotesOld(String notes) { if (this.notes == null) this.notes = notes; }
public String getId() { return id; }
public void setId(String id) { this.id = id; }
}

View File

@@ -41,24 +41,16 @@ public class User {
this.utenteNumber = utenteNumber;
}
@com.google.firebase.firestore.PropertyName("nome_completo")
// --- Getters e Setters ---
public String getName() { return name; }
@com.google.firebase.firestore.PropertyName("nome_completo")
public void setName(String name) { this.name = name; }
@com.google.firebase.firestore.PropertyName("idade")
public int getAge() { return age; }
@com.google.firebase.firestore.PropertyName("idade")
public void setAge(int age) { this.age = age; }
@com.google.firebase.firestore.PropertyName("numero_utente")
public String getUtenteNumber() { return utenteNumber; }
@com.google.firebase.firestore.PropertyName("numero_utente")
public void setUtenteNumber(String utenteNumber) { this.utenteNumber = utenteNumber; }
@com.google.firebase.firestore.PropertyName("tipo")
public String getTipo() { return tipo; }
@com.google.firebase.firestore.PropertyName("tipo")
public void setTipo(String tipo) { this.tipo = tipo; }
}

View File

@@ -35,6 +35,7 @@ public class AppointmentsViewModel extends AndroidViewModel {
return;
String userId = auth.getCurrentUser().getUid();
Log.d("AppointmentsVM", "Fetching appointments for userId: " + userId);
// 1. Fetch Future Appointments
db.collection("consultas")
.whereEqualTo("userId", userId)
@@ -45,6 +46,10 @@ public class AppointmentsViewModel extends AndroidViewModel {
return;
}
if (value != null) {
Log.d("AppointmentsVM", "Future appointments received. Count: " + value.size());
}
List<Appointment> apps = new ArrayList<>();
java.util.Date now = new java.util.Date();
java.text.SimpleDateFormat format = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm",
@@ -91,6 +96,10 @@ public class AppointmentsViewModel extends AndroidViewModel {
return;
}
if (value != null) {
Log.d("AppointmentsVM", "Past appointments received. Count: " + value.size());
}
List<Appointment> apps = new ArrayList<>();
if (value != null) {
for (QueryDocumentSnapshot doc : value) {

View File

@@ -96,7 +96,11 @@ public class RegisterActivity extends AppCompatActivity {
userMap.put("id", userId);
userMap.put("nome_completo", name);
userMap.put("email", email);
userMap.put("idade", ageStr);
try {
userMap.put("idade", Integer.parseInt(ageStr));
} catch (NumberFormatException e) {
userMap.put("idade", 0);
}
userMap.put("numero_utente", utenteStr);
userMap.put("sexo", gender);
userMap.put("tipo", "paciente");

View File

@@ -23,62 +23,38 @@ import java.util.Collections;
public class HomeFragment extends Fragment {
private FragmentHomeBinding binding;
private MedicationViewModel medicationViewModel;
private AppointmentsViewModel appointmentsViewModel;
private AppointmentAdapter appointmentAdapter;
private MedicationAdapter medicationAdapter;
public View onCreateView(@NonNull LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
binding = FragmentHomeBinding.inflate(inflater, container, false);
// --- Greeting & Profile Picture ---
// --- Greeting & Profile Picture (Real-time) ---
com.google.firebase.auth.FirebaseAuth auth = com.google.firebase.auth.FirebaseAuth.getInstance();
if (auth.getCurrentUser() != null) {
String userId = auth.getCurrentUser().getUid();
com.google.firebase.firestore.FirebaseFirestore.getInstance().collection("utilizadores").document(userId)
.get()
.addOnSuccessListener(documentSnapshot -> {
if (documentSnapshot.exists() && isAdded()) {
String name = documentSnapshot.getString("nome_completo");
if (name == null || name.isEmpty()) name = documentSnapshot.getString("name");
if (name != null && !name.isEmpty()) {
String firstName = name.split(" ")[0];
binding.textGreeting.setText("Olá, " + firstName);
} else {
binding.textGreeting.setText("Olá");
}
String profilePictureUri = documentSnapshot.getString("profilePictureUri");
if (isAdded() && binding.imageProfileHome != null) {
binding.imageProfileHome.setVisibility(View.VISIBLE);
if (profilePictureUri != null && !profilePictureUri.isEmpty() && getContext() != null) {
Glide.with(getContext())
.load(profilePictureUri)
.placeholder(R.drawable.ic_user)
.circleCrop()
.into(binding.imageProfileHome);
} else {
binding.imageProfileHome.setImageResource(R.drawable.ic_user);
}
// Clique para entrar no perfil (Manual e Infalível)
binding.imageProfileHome.setOnClickListener(v -> {
if (getActivity() != null) {
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.nav_host_fragment, new com.example.cuida.ui.profile.ProfileFragment())
.addToBackStack(null)
.commit();
}
});
}
com.google.firebase.firestore.FirebaseFirestore db = com.google.firebase.firestore.FirebaseFirestore.getInstance();
// Listen to 'utilizadores' for basic profile info
db.collection("utilizadores").document(userId)
.addSnapshotListener((documentSnapshot, error) -> {
if (error != null) {
android.util.Log.e("HomeFragment", "Error loading profile", error);
return;
}
if (documentSnapshot != null && documentSnapshot.exists() && isAdded()) {
updateGreetingUI(documentSnapshot);
}
});
// Also listen to 'Pacientes' (collection where Professional app saves data)
db.collection("Pacientes").document(userId)
.addSnapshotListener((documentSnapshot, error) -> {
if (documentSnapshot != null && documentSnapshot.exists() && isAdded()) {
updateGreetingUI(documentSnapshot);
}
})
.addOnFailureListener(e -> {
if (isAdded())
binding.textGreeting.setText("Olá");
});
} else {
binding.textGreeting.setText("Olá");
@@ -90,21 +66,17 @@ public class HomeFragment extends Fragment {
binding.recyclerAppointments.setLayoutManager(new LinearLayoutManager(getContext()));
binding.recyclerAppointments.setAdapter(appointmentAdapter);
// Medications
medicationViewModel = new ViewModelProvider(this).get(MedicationViewModel.class);
medicationAdapter = new MedicationAdapter(new MedicationAdapter.OnItemClickListener() {
@Override
public void onCheckClick(Medication medication) {
medicationViewModel.update(medication);
}
@Override
public void onItemClick(Medication medication) {
// Do nothing
}
});
binding.recyclerMedications.setLayoutManager(new LinearLayoutManager(getContext()));
binding.recyclerMedications.setAdapter(medicationAdapter);
// Schedule Button
if (binding.buttonSchedule != null) {
binding.buttonSchedule.setOnClickListener(v -> {
if (getActivity() != null) {
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.nav_host_fragment, new com.example.cuida.ui.schedule.ScheduleAppointmentFragment())
.addToBackStack(null)
.commit();
}
});
}
// --- Load Appointments ---
appointmentsViewModel = new ViewModelProvider(this).get(AppointmentsViewModel.class);
@@ -123,23 +95,48 @@ public class HomeFragment extends Fragment {
}
});
// --- Load Medications ---
medicationViewModel.getAllMedications().observe(getViewLifecycleOwner(), medications -> {
if (medications != null && !medications.isEmpty()) {
// To keep the most recent at the top, we reverse the list
Collections.reverse(medications);
binding.recyclerMedications.setVisibility(View.VISIBLE);
binding.textEmptyMedications.setVisibility(View.GONE);
medicationAdapter.setMedications(medications);
} else {
binding.recyclerMedications.setVisibility(View.GONE);
binding.textEmptyMedications.setVisibility(View.VISIBLE);
}
});
return binding.getRoot();
}
private void updateGreetingUI(com.google.firebase.firestore.DocumentSnapshot documentSnapshot) {
if (!isAdded() || binding == null) return;
String name = documentSnapshot.getString("nome_completo");
if (name == null || name.isEmpty()) name = documentSnapshot.getString("name");
if (name == null || name.isEmpty()) name = documentSnapshot.getString("nome");
if (name != null && !name.isEmpty()) {
String firstName = name.split(" ")[0];
binding.textGreeting.setText("Olá, " + firstName);
}
String profilePictureUri = documentSnapshot.getString("profilePictureUri");
if (binding.imageProfileHome != null) {
binding.imageProfileHome.setVisibility(View.VISIBLE);
if (profilePictureUri != null && !profilePictureUri.isEmpty() && getContext() != null) {
Glide.with(getContext())
.load(profilePictureUri)
.placeholder(R.drawable.ic_user)
.circleCrop()
.into(binding.imageProfileHome);
} else if (profilePictureUri == null || profilePictureUri.isEmpty()) {
binding.imageProfileHome.setImageResource(R.drawable.ic_user);
}
// Clique para entrar no perfil
binding.imageProfileHome.setOnClickListener(v -> {
if (getActivity() != null) {
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.nav_host_fragment, new com.example.cuida.ui.profile.ProfileFragment())
.addToBackStack(null)
.commit();
}
});
}
}
@Override
public void onDestroyView() {
super.onDestroyView();

View File

@@ -65,7 +65,11 @@ public class MedicationFragment extends Fragment {
if (t.isEmpty()) continue;
try {
int oldId = (medication.name + t).hashCode();
int oldId15m = (medication.name + t + "15m").hashCode();
int oldId5m = (medication.name + t + "5m").hashCode();
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), oldId);
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), oldId15m);
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), oldId5m);
} catch (Exception e) {}
}
}
@@ -104,6 +108,26 @@ public class MedicationFragment extends Fragment {
title,
msg,
alarmId);
// 15 minutes before
java.util.Calendar cal15m = (java.util.Calendar) calendar.clone();
cal15m.add(java.util.Calendar.MINUTE, -15);
if (cal15m.getTimeInMillis() > System.currentTimeMillis()) {
String msg15m = "Faltam 15 minutos para tomar: " + medicationToSave.name;
int id15m = (medicationToSave.name + t + "15m").hashCode();
com.example.cuida.utils.AlarmScheduler.scheduleAlarm(
requireContext(), cal15m.getTimeInMillis(), title, msg15m, id15m);
}
// 5 minutes before
java.util.Calendar cal5m = (java.util.Calendar) calendar.clone();
cal5m.add(java.util.Calendar.MINUTE, -5);
if (cal5m.getTimeInMillis() > System.currentTimeMillis()) {
String msg5m = "Faltam 5 minutos para tomar: " + medicationToSave.name;
int id5m = (medicationToSave.name + t + "5m").hashCode();
com.example.cuida.utils.AlarmScheduler.scheduleAlarm(
requireContext(), cal5m.getTimeInMillis(), title, msg5m, id5m);
}
} catch (Exception e) {
e.printStackTrace();
}
@@ -122,7 +146,11 @@ public class MedicationFragment extends Fragment {
if (t.isEmpty()) continue;
try {
int alarmId = (medicationToDelete.name + t).hashCode();
int alarmId15m = (medicationToDelete.name + t + "15m").hashCode();
int alarmId5m = (medicationToDelete.name + t + "5m").hashCode();
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), alarmId);
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), alarmId15m);
com.example.cuida.utils.AlarmScheduler.cancelAlarm(requireContext(), alarmId5m);
} catch (Exception e) {
e.printStackTrace();
}

View File

@@ -35,6 +35,7 @@ public class MedicationViewModel extends AndroidViewModel {
return;
String userId = auth.getCurrentUser().getUid();
Log.d("MedicationViewModel", "Fetching medications for userId: " + userId);
db.collection("medicamentos")
.whereEqualTo("userId", userId)
.addSnapshotListener((value, error) -> {
@@ -43,6 +44,12 @@ public class MedicationViewModel extends AndroidViewModel {
return;
}
if (value != null) {
Log.d("MedicationViewModel", "Medications received. Count: " + value.size());
} else {
Log.d("MedicationViewModel", "Value is null");
}
List<Medication> meds = new ArrayList<>();
if (value != null) {
for (QueryDocumentSnapshot doc : value) {

View File

@@ -48,7 +48,9 @@ public class ProfileFragment extends Fragment {
new ActivityResultContracts.GetContent(), uri -> {
if (uri != null && dialogImageView != null) {
tempProfileUri = uri;
dialogImageView.setImageURI(uri);
if (getContext() != null) {
Glide.with(getContext()).load(uri).circleCrop().into(dialogImageView);
}
}
});
@@ -63,11 +65,43 @@ public class ProfileFragment extends Fragment {
if (auth.getCurrentUser() != null) {
userId = auth.getCurrentUser().getUid();
// Pré-inicializar com dados do Auth para evitar ecrã vazio
currentUser = new User();
currentUser.id = userId;
currentUser.email = auth.getCurrentUser().getEmail();
currentUser.name = auth.getCurrentUser().getDisplayName();
Log.d("ProfileFragment", "User ID: " + userId + " Email: " + currentUser.email);
// Atualizar UI inicial com o que temos do Auth
if (currentUser.email != null) binding.profileEmail.setText(currentUser.email);
if (currentUser.name != null && !currentUser.name.isEmpty()) binding.profileName.setText(currentUser.name);
loadUserData();
}
binding.buttonEditProfile.setOnClickListener(v -> showEditDialog());
// --- Dark Mode Logic ---
android.content.SharedPreferences themePrefs = requireContext().getSharedPreferences("theme_prefs", Context.MODE_PRIVATE);
boolean isDarkMode = themePrefs.getBoolean("dark_mode", false);
// Desativar listener temporariamente para evitar loop de recriação
binding.switchDarkMode.setOnCheckedChangeListener(null);
binding.switchDarkMode.setChecked(isDarkMode);
binding.switchDarkMode.setOnCheckedChangeListener((buttonView, isChecked) -> {
if (isAdded() && buttonView.isPressed()) {
themePrefs.edit().putBoolean("dark_mode", isChecked).apply();
if (isChecked) {
androidx.appcompat.app.AppCompatDelegate.setDefaultNightMode(androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_YES);
} else {
androidx.appcompat.app.AppCompatDelegate.setDefaultNightMode(androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_NO);
}
}
});
binding.buttonLogout.setOnClickListener(v -> {
auth.signOut();
if (getContext() != null) {
@@ -88,21 +122,31 @@ public class ProfileFragment extends Fragment {
try {
if (userId == null || !isAdded()) return;
Log.d("ProfileFragment", "Starting loadUserData for " + userId);
// Primeiro tenta na coleção geral 'utilizadores'
db.collection("utilizadores").document(userId).addSnapshotListener((doc, error) -> {
if (error != null) {
Log.e("ProfileFragment", "Error in utilizadores listener", error);
}
try {
if (doc != null && doc.exists()) {
Log.d("ProfileFragment", "Found in utilizadores: " + doc.getData());
updateUIFromDocument(doc);
} else {
Log.d("ProfileFragment", "Not found in utilizadores");
}
// Independentemente de encontrar em 'utilizadores', tenta TAMBÉM em 'Pacientes' para completar dados
// Tenta TAMBÉM em 'Pacientes' para completar dados (ex: vindos da App Médica)
db.collection("Pacientes").document(userId).get().addOnSuccessListener(docP -> {
if (docP.exists()) {
if (docP != null && docP.exists()) {
Log.d("ProfileFragment", "Found in Pacientes: " + docP.getData());
updateUIFromDocument(docP);
} else {
Log.d("ProfileFragment", "Not found in Pacientes");
}
});
}).addOnFailureListener(e -> Log.e("ProfileFragment", "Error in Pacientes get", e));
} catch (Exception e) {
Log.e("ProfileFragment", "Erro no carregamento", e);
Log.e("ProfileFragment", "Erro no processamento de documentos", e);
}
});
} catch (Exception e) {
@@ -124,8 +168,14 @@ public class ProfileFragment extends Fragment {
if (e != null && !e.isEmpty()) binding.profileEmail.setText(e);
// Idade
Long i = doc.getLong("idade");
if (i != null) binding.profileAge.setText(String.valueOf(i));
Object idadeObj = doc.get("idade");
Integer idadeVal = null;
if (idadeObj instanceof Long) {
idadeVal = ((Long) idadeObj).intValue();
} else if (idadeObj instanceof String) {
try { idadeVal = Integer.parseInt((String) idadeObj); } catch (Exception ignored) {}
}
if (idadeVal != null) binding.profileAge.setText(String.valueOf(idadeVal));
// Nº Utente
String u = doc.getString("numero_utente");
@@ -142,7 +192,7 @@ public class ProfileFragment extends Fragment {
if (currentUser == null) currentUser = new User();
if (n != null) currentUser.name = n;
if (e != null) currentUser.email = e;
if (i != null) currentUser.age = i.intValue();
if (idadeVal != null) currentUser.age = idadeVal;
if (u != null) currentUser.utenteNumber = u;
if (p != null) currentUser.profilePictureUri = p;
currentUser.id = doc.getId();
@@ -178,12 +228,25 @@ public class ProfileFragment extends Fragment {
EditText editEmail = dialogView.findViewById(R.id.edit_email);
dialogImageView = dialogView.findViewById(R.id.edit_profile_image);
// Preenchimento Seguro
// Preenchimento Seguro e Infalível
if (currentUser == null) {
currentUser = new User();
currentUser.id = userId;
}
if (currentUser.email == null || currentUser.email.isEmpty()) {
if (auth.getCurrentUser() != null) currentUser.email = auth.getCurrentUser().getEmail();
}
Log.d("ProfileFragment", "Opening EditDialog. Email to show: " + currentUser.email);
if (editName != null) editName.setText(currentUser.name);
if (editAge != null) editAge.setText(String.valueOf(currentUser.age));
if (editAge != null) editAge.setText(currentUser.age > 0 ? String.valueOf(currentUser.age) : "");
if (editUtente != null) editUtente.setText(currentUser.utenteNumber);
if (editEmail != null) editEmail.setText(currentUser.email);
if (dialogImageView != null && currentUser.profilePictureUri != null) {
if (editEmail != null) {
editEmail.setText(currentUser.email);
Log.d("ProfileFragment", "editEmail set to: " + editEmail.getText().toString());
}
if (dialogImageView != null && currentUser.profilePictureUri != null && !currentUser.profilePictureUri.isEmpty()) {
loadSafeImage(dialogImageView, currentUser.profilePictureUri);
}
@@ -201,11 +264,26 @@ public class ProfileFragment extends Fragment {
View btnSave = dialogView.findViewById(R.id.button_save);
if (btnSave != null) {
btnSave.setOnClickListener(v -> {
String nameStr = editName != null ? editName.getText().toString().trim() : "";
String ageStr = editAge != null ? editAge.getText().toString().trim() : "";
String utenteStr = editUtente != null ? editUtente.getText().toString().trim() : "";
String emailStr = editEmail != null ? editEmail.getText().toString().trim() : "";
if (nameStr.isEmpty() || ageStr.isEmpty() || emailStr.isEmpty() || utenteStr.isEmpty()) {
Toast.makeText(getContext(), "Preencha os campos.", Toast.LENGTH_SHORT).show();
return;
}
if (utenteStr.length() != 9) {
Toast.makeText(getContext(), "Utente deve ter 9 dígitos.", Toast.LENGTH_SHORT).show();
return;
}
btnSave.setEnabled(false);
if (tempProfileUri != null) {
uploadPhotoAndSave(editName.getText().toString(), editAge.getText().toString(), editUtente.getText().toString(), editEmail.getText().toString(), dialog);
uploadPhotoAndSave(nameStr, ageStr, utenteStr, emailStr, dialog);
} else {
saveDataToFirestore(editName.getText().toString(), editAge.getText().toString(), editUtente.getText().toString(), editEmail.getText().toString(), currentUser.profilePictureUri, dialog);
saveDataToFirestore(nameStr, ageStr, utenteStr, emailStr, currentUser.profilePictureUri, dialog);
}
});
}

View File

@@ -145,13 +145,16 @@ public class ScheduleAppointmentFragment extends Fragment {
}
}
// Put day on left, month on right
int daySpinnerId = android.content.res.Resources.getSystem().getIdentifier("day", "id", "android");
int monthSpinnerId = android.content.res.Resources.getSystem().getIdentifier("month", "id", "android");
if (daySpinnerId != 0 && monthSpinnerId != 0) {
View daySpinner = datePicker.findViewById(daySpinnerId);
View monthSpinner = datePicker.findViewById(monthSpinnerId);
if (daySpinner != null && monthSpinner != null) {
if (monthSpinner instanceof android.widget.NumberPicker) {
String[] ptMonths = new String[]{"Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"};
((android.widget.NumberPicker) monthSpinner).setDisplayedValues(ptMonths);
}
ViewGroup parent = (ViewGroup) daySpinner.getParent();
if (parent != null && parent.equals(monthSpinner.getParent())) {
int dIndex = parent.indexOfChild(daySpinner);
@@ -182,8 +185,9 @@ public class ScheduleAppointmentFragment extends Fragment {
scheduleViewModel.getSaveSuccess().observe(getViewLifecycleOwner(), success -> {
if (success) {
Toast.makeText(getContext(), "Consulta agendada!", Toast.LENGTH_SHORT).show();
NavController navController = Navigation.findNavController(getView());
navController.popBackStack();
if (getActivity() != null) {
getActivity().getSupportFragmentManager().popBackStack();
}
}
});

View File

@@ -92,7 +92,7 @@ public class ScheduleViewModel extends AndroidViewModel {
public void setSelectedDoctor(String doctor) {
selectedDoctor.setValue(doctor);
String schedule = doctorSchedules.get(doctor);
selectedDoctorSchedule.setValue(schedule != null ? "Horário: " + schedule : "Horário: 08:00 - 19:00");
selectedDoctorSchedule.setValue(schedule != null ? "Horário: " + schedule : "Horário: 09:00 - 23:00");
String date = selectedDate.getValue();
if (date != null) {
loadTimeSlots(date);
@@ -190,8 +190,8 @@ public class ScheduleViewModel extends AndroidViewModel {
private List<TimeSlot> generateTimeSlots(List<String> bookedTimes, String selectedDateStr) {
List<TimeSlot> slots = new ArrayList<>();
int startHour = 8;
int endHour = 19;
int startHour = 9;
int endHour = 23;
int startMinute = 0;
int endMinute = 0;
@@ -243,6 +243,13 @@ public class ScheduleViewModel extends AndroidViewModel {
while (cursor.before(endLimit)) {
int h = cursor.get(Calendar.HOUR_OF_DAY);
int m = cursor.get(Calendar.MINUTE);
// Skip lunch break from 12:00 to 14:00
if (h >= 12 && h < 14) {
cursor.add(Calendar.MINUTE, 20);
continue;
}
String timeStr = String.format("%02d:%02d", h, m);
if (!isToday || h > currentHour || (h == currentHour && m > currentMinute)) {
@@ -319,6 +326,27 @@ public class ScheduleViewModel extends AndroidViewModel {
"Lembrete de Consulta", "A sua consulta é daqui a 30 minutos (" + time + ")",
(date + time + "30m").hashCode());
}
// Notifications for morning appointments
if (hour < 12) {
// 3 hours before
Calendar cal3h = (Calendar) baseCal.clone();
cal3h.add(Calendar.HOUR_OF_DAY, -3);
if (cal3h.getTimeInMillis() > System.currentTimeMillis()) {
AlarmScheduler.scheduleAlarm(getApplication(), cal3h.getTimeInMillis(),
"Lembrete de Consulta", "A sua consulta é daqui a 3 horas (" + time + ")",
(date + time + "3h").hashCode());
}
// 1 hour before
Calendar cal1h = (Calendar) baseCal.clone();
cal1h.add(Calendar.HOUR_OF_DAY, -1);
if (cal1h.getTimeInMillis() > System.currentTimeMillis()) {
AlarmScheduler.scheduleAlarm(getApplication(), cal1h.getTimeInMillis(),
"Lembrete de Consulta", "A sua consulta é daqui a 1 hora (" + time + ")",
(date + time + "1h").hashCode());
}
}
} catch (Exception e) {
e.printStackTrace();
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 998 KiB

View File

@@ -1,12 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="-35dp"
android:bottom="-35dp"
android:left="-35dp"
android:right="-35dp">
<bitmap
android:src="@drawable/ic_logo"
android:gravity="center" />
</item>
</layer-list>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/ic_logo"
android:inset="16dp" />

View File

@@ -14,9 +14,10 @@
android:padding="24dp">
<ImageView
android:layout_width="161dp"
android:layout_width="160dp"
android:layout_height="160dp"
android:layout_marginBottom="32dp"
android:layout_gravity="center_horizontal"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_logo" />

View File

@@ -30,7 +30,7 @@
android:layout_marginTop="-8dp"
android:layout_marginBottom="16dp"
android:visibility="gone"
android:background="#FFFFFF"
android:background="@color/surface_color"
android:elevation="4dp" />
<LinearLayout
@@ -45,7 +45,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="@color/black"
android:textColor="@color/text_primary"
android:textSize="14sp"/>
<com.google.android.material.button.MaterialButton

View File

@@ -38,11 +38,13 @@
android:id="@+id/edit_profile_image"
android:layout_width="110dp"
android:layout_height="110dp"
android:padding="4dp"
android:padding="20dp"
android:background="@color/primary_color"
app:tint="@android:color/white"
app:strokeWidth="2dp"
app:strokeColor="?attr/colorPrimary"
android:src="@drawable/ic_user"
android:scaleType="centerCrop"
android:scaleType="centerInside"
app:shapeAppearanceOverlay="@style/CircleImageView" />
<com.google.android.material.button.MaterialButton

View File

@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="@color/background_color">
<LinearLayout
android:layout_width="match_parent"
@@ -13,7 +14,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title_appointments"
android:textSize="24sp"
android:textSize="26sp"
android:textStyle="bold"
android:textColor="@color/primary_color"
android:layout_marginBottom="16dp"/>

View File

@@ -25,16 +25,19 @@
android:layout_weight="1"
android:text="Olá"
android:textColor="@color/white"
android:textSize="38sp"
android:textSize="40sp"
android:fontFamily="sans-serif-black"
android:gravity="center_vertical" />
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/image_profile_home"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginStart="16dp"
android:scaleType="centerCrop"
android:scaleType="centerInside"
android:padding="16dp"
android:background="@color/primary_color"
app:tint="@android:color/white"
android:src="@drawable/ic_placeholder"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.App.CornerSize50Percent"
app:strokeWidth="2dp"
@@ -58,6 +61,17 @@
android:orientation="vertical"
android:paddingHorizontal="20dp">
<com.google.android.material.button.MaterialButton
android:id="@+id/button_schedule"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginTop="16dp"
android:layout_marginBottom="24dp"
android:text="Marcar Consulta"
android:textSize="18sp"
android:textStyle="bold"
app:cornerRadius="16dp" />
<!-- Agenda de Consultas -->
<LinearLayout
android:layout_width="match_parent"
@@ -79,7 +93,7 @@
android:layout_marginStart="8dp"
android:text="Agenda de Consultas"
android:textColor="@color/text_primary"
android:textSize="22sp"
android:textSize="24sp"
android:textStyle="bold" />
</LinearLayout>
@@ -100,47 +114,6 @@
android:textColor="@color/text_secondary"
android:visibility="gone" />
<!-- Tratamentos Atuais -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="40dp"
android:gravity="center_vertical">
<ImageView
android:layout_width="28dp"
android:layout_height="28dp"
android:src="@android:drawable/ic_menu_agenda"
app:tint="@color/primary_color"/>
<TextView
android:id="@+id/title_medication"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="Tratamentos Atuais"
android:textColor="@color/text_primary"
android:textSize="22sp"
android:textStyle="bold" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_medications"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:nestedScrollingEnabled="false" />
<TextView
android:id="@+id/text_empty_medications"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Nenhum tratamento ativo."
android:textAlignment="center"
android:textColor="@color/text_secondary"
android:visibility="gone" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>

View File

@@ -3,6 +3,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color"
android:padding="16dp">
<TextView

View File

@@ -10,12 +10,15 @@
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/profile_image"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_width="160dp"
android:layout_height="160dp"
android:src="@drawable/ic_placeholder"
android:scaleType="centerCrop"
android:scaleType="centerInside"
android:padding="32dp"
android:background="@color/primary_color"
app:tint="@android:color/white"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.App.CornerSize50Percent"
android:layout_marginBottom="24dp"/>
android:layout_marginBottom="32dp"/>
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
@@ -37,7 +40,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nome do Utilizador"
android:textSize="22sp"
android:textSize="26sp"
android:textStyle="bold"
android:textColor="@color/text_primary"
android:layout_marginBottom="8dp"/>
@@ -47,14 +50,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="email@exemplo.com"
android:textSize="14sp"
android:textSize="18sp"
android:textColor="@color/text_secondary"
android:layout_marginBottom="24dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#E0E0E0"
android:background="@color/primary_light_color"
android:layout_marginBottom="16dp"/>
<LinearLayout
@@ -107,6 +110,42 @@
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
app:cardCornerRadius="16dp"
app:cardBackgroundColor="@color/surface_color">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp"
android:gravity="center_vertical">
<ImageView
android:layout_width="24dp"
android:layout_height="24dp"
android:src="@drawable/ic_dark_mode"
app:tint="?attr/colorPrimary"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginStart="16dp"
android:text="Modo Escuro"
android:textSize="16sp"
android:textColor="@color/text_primary"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switch_dark_mode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.button.MaterialButton
android:id="@+id/button_edit_profile"
android:layout_width="match_parent"

View File

@@ -3,6 +3,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/background_color"
android:padding="16dp">
<TextView
@@ -11,7 +12,7 @@
android:text="Agendar Consulta"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="@color/black"
android:textColor="@color/text_primary"
android:layout_marginBottom="24dp"/>
<!-- 1. Selecionar Data -->
@@ -61,7 +62,7 @@
android:layout_height="wrap_content"
android:text="Horário: --"
android:textSize="14sp"
android:textColor="@color/black"
android:textColor="@color/text_secondary"
android:layout_marginBottom="16dp"
android:textStyle="italic"/>

View File

@@ -5,6 +5,7 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
android:background="@color/background_color"
android:gravity="center_horizontal">
<TextView
@@ -23,14 +24,16 @@
android:text="Ligar SNS 24 (808 24 24 24)"
android:textSize="18sp"
android:backgroundTint="@color/teal_700"
android:textColor="@android:color/white"
app:icon="@android:drawable/ic_menu_call"
app:iconTint="@android:color/white"
app:iconGravity="textStart"
android:layout_marginBottom="32dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#CCCCCC"
android:background="@color/primary_light_color"
android:layout_marginBottom="24dp"/>
<TextView
@@ -74,9 +77,9 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="@android:color/black"
android:textColor="@color/text_primary"
android:padding="16dp"
android:background="#F5F5F5"
android:background="@color/surface_color"
android:visibility="gone"
android:layout_marginBottom="16dp"/>
@@ -88,6 +91,7 @@
android:textSize="16sp"
android:backgroundTint="@android:color/holo_red_dark"
app:icon="@android:drawable/ic_menu_mapmode"
app:iconGravity="textStart"
app:cornerRadius="8dp"
android:visibility="gone"/>

View File

@@ -24,7 +24,7 @@
app:cardCornerRadius="16dp"
app:cardElevation="0dp"
app:strokeWidth="0dp"
app:cardBackgroundColor="#E3F2FD"
app:cardBackgroundColor="@color/primary_light_color"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent">
@@ -42,10 +42,12 @@
android:layout_height="wrap_content"
android:text="Nome Medicamento"
android:textColor="@color/text_primary"
android:textSize="18sp"
android:textSize="20sp"
android:textStyle="bold"
android:gravity="center_vertical"
android:layout_marginStart="16dp"
app:layout_constraintTop_toTopOf="@id/icon_bg"
app:layout_constraintBottom_toTopOf="@id/text_med_dosage"
app:layout_constraintStart_toEndOf="@id/icon_bg"
app:layout_constraintEnd_toStartOf="@id/checkbox_taken"
android:layout_marginEnd="8dp"/>
@@ -56,9 +58,10 @@
android:layout_height="wrap_content"
android:text="Dosagem"
android:textColor="@color/text_secondary"
android:textSize="14sp"
android:layout_marginTop="4dp"
android:textSize="16sp"
android:gravity="center_vertical"
app:layout_constraintTop_toBottomOf="@id/text_med_name"
app:layout_constraintBottom_toBottomOf="@id/icon_bg"
app:layout_constraintStart_toStartOf="@id/text_med_name"
app:layout_constraintEnd_toEndOf="@id/text_med_name"/>