quero agora marcar as consultas e medicamentos para os apcientes

This commit is contained in:
2026-06-15 14:26:39 +01:00
parent fc006f06de
commit 29de16db0a
55 changed files with 466 additions and 449 deletions

Binary file not shown.

View File

@@ -1060,6 +1060,19 @@
<option name="screenX" value="1200" /> <option name="screenX" value="1200" />
<option name="screenY" value="1920" /> <option name="screenY" value="1920" />
</PersistentDeviceSelectionData> </PersistentDeviceSelectionData>
<PersistentDeviceSelectionData>
<option name="api" value="36" />
<option name="brand" value="samsung" />
<option name="codename" value="gts10pwifi" />
<option name="formFactor" value="Tablet" />
<option name="id" value="gts10pwifi" />
<option name="labId" value="google" />
<option name="manufacturer" value="Samsung" />
<option name="name" value="Galaxy Tab S10+" />
<option name="screenDensity" value="320" />
<option name="screenX" value="1752" />
<option name="screenY" value="2800" />
</PersistentDeviceSelectionData>
<PersistentDeviceSelectionData> <PersistentDeviceSelectionData>
<option name="api" value="33" /> <option name="api" value="33" />
<option name="brand" value="samsung" /> <option name="brand" value="samsung" />
@@ -1754,6 +1767,19 @@
<option name="screenX" value="1600" /> <option name="screenX" value="1600" />
<option name="screenY" value="2560" /> <option name="screenY" value="2560" />
</PersistentDeviceSelectionData> </PersistentDeviceSelectionData>
<PersistentDeviceSelectionData>
<option name="api" value="36" />
<option name="brand" value="google" />
<option name="codename" value="tangorpro" />
<option name="formFactor" value="Tablet" />
<option name="id" value="tangorpro" />
<option name="labId" value="google" />
<option name="manufacturer" value="Google" />
<option name="name" value="Pixel Tablet" />
<option name="screenDensity" value="320" />
<option name="screenX" value="1600" />
<option name="screenY" value="2560" />
</PersistentDeviceSelectionData>
<PersistentDeviceSelectionData> <PersistentDeviceSelectionData>
<option name="api" value="35" /> <option name="api" value="35" />
<option name="brand" value="google" /> <option name="brand" value="google" />

1
.idea/misc.xml generated
View File

@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">

View File

@@ -29,12 +29,17 @@ public final class ItemPacienteBinding implements ViewBinding {
@NonNull @NonNull
public final TextView textPacienteNome; public final TextView textPacienteNome;
@NonNull
public final TextView textPacienteUtente;
private ItemPacienteBinding(@NonNull MaterialCardView rootView, @NonNull ImageView imagePaciente, private ItemPacienteBinding(@NonNull MaterialCardView rootView, @NonNull ImageView imagePaciente,
@NonNull TextView textPacienteEmail, @NonNull TextView textPacienteNome) { @NonNull TextView textPacienteEmail, @NonNull TextView textPacienteNome,
@NonNull TextView textPacienteUtente) {
this.rootView = rootView; this.rootView = rootView;
this.imagePaciente = imagePaciente; this.imagePaciente = imagePaciente;
this.textPacienteEmail = textPacienteEmail; this.textPacienteEmail = textPacienteEmail;
this.textPacienteNome = textPacienteNome; this.textPacienteNome = textPacienteNome;
this.textPacienteUtente = textPacienteUtente;
} }
@Override @Override
@@ -82,8 +87,14 @@ public final class ItemPacienteBinding implements ViewBinding {
break missingId; break missingId;
} }
id = R.id.text_paciente_utente;
TextView textPacienteUtente = ViewBindings.findChildViewById(rootView, id);
if (textPacienteUtente == null) {
break missingId;
}
return new ItemPacienteBinding((MaterialCardView) rootView, imagePaciente, textPacienteEmail, return new ItemPacienteBinding((MaterialCardView) rootView, imagePaciente, textPacienteEmail,
textPacienteNome); textPacienteNome, textPacienteUtente);
} }
String missingId = rootView.getResources().getResourceName(id); String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); throw new NullPointerException("Missing required view with ID: ".concat(missingId));

View File

@@ -1,2 +1,2 @@
#- File Locator - #- File Locator -
listingFile=../../../apk/debug/output-metadata.json listingFile=../../../../outputs/apk/debug/output-metadata.json

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="item_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/item_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="com.google.android.material.card.MaterialCardView"><Targets><Target tag="layout/item_paciente_0" view="com.google.android.material.card.MaterialCardView"><Expressions/><location startLine="1" startOffset="0" endLine="57" endOffset="51"/></Target><Target id="@+id/image_paciente" view="ImageView"><Expressions/><location startLine="20" startOffset="8" endLine="29" endOffset="44"/></Target><Target id="@+id/text_paciente_nome" view="TextView"><Expressions/><location startLine="37" startOffset="12" endLine="44" endOffset="57"/></Target><Target id="@+id/text_paciente_email" view="TextView"><Expressions/><location startLine="46" startOffset="12" endLine="53" endOffset="59"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="item_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/item_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="com.google.android.material.card.MaterialCardView"><Targets><Target tag="layout/item_paciente_0" view="com.google.android.material.card.MaterialCardView"><Expressions/><location startLine="1" startOffset="0" endLine="66" endOffset="51"/></Target><Target id="@+id/image_paciente" view="ImageView"><Expressions/><location startLine="20" startOffset="8" endLine="29" endOffset="44"/></Target><Target id="@+id/text_paciente_nome" view="TextView"><Expressions/><location startLine="37" startOffset="12" endLine="44" endOffset="57"/></Target><Target id="@+id/text_paciente_email" view="TextView"><Expressions/><location startLine="46" startOffset="12" endLine="53" endOffset="59"/></Target><Target id="@+id/text_paciente_utente" view="TextView"><Expressions/><location startLine="55" startOffset="12" endLine="62" endOffset="59"/></Target></Targets></Layout>

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="item_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/item_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="com.google.android.material.card.MaterialCardView"><Targets><Target tag="layout/item_paciente_0" view="com.google.android.material.card.MaterialCardView"><Expressions/><location startLine="1" startOffset="0" endLine="57" endOffset="51"/></Target><Target id="@+id/image_paciente" view="ImageView"><Expressions/><location startLine="20" startOffset="8" endLine="29" endOffset="44"/></Target><Target id="@+id/text_paciente_nome" view="TextView"><Expressions/><location startLine="37" startOffset="12" endLine="44" endOffset="57"/></Target><Target id="@+id/text_paciente_email" view="TextView"><Expressions/><location startLine="46" startOffset="12" endLine="53" endOffset="59"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="item_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/item_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="com.google.android.material.card.MaterialCardView"><Targets><Target tag="layout/item_paciente_0" view="com.google.android.material.card.MaterialCardView"><Expressions/><location startLine="1" startOffset="0" endLine="66" endOffset="51"/></Target><Target id="@+id/image_paciente" view="ImageView"><Expressions/><location startLine="20" startOffset="8" endLine="29" endOffset="44"/></Target><Target id="@+id/text_paciente_nome" view="TextView"><Expressions/><location startLine="37" startOffset="12" endLine="44" endOffset="57"/></Target><Target id="@+id/text_paciente_email" view="TextView"><Expressions/><location startLine="46" startOffset="12" endLine="53" endOffset="59"/></Target><Target id="@+id/text_paciente_utente" view="TextView"><Expressions/><location startLine="55" startOffset="12" endLine="62" endOffset="59"/></Target></Targets></Layout>

View File

@@ -1,4 +1,4 @@
#Tue May 12 16:17:34 WEST 2026 #Thu Jun 11 11:21:27 WEST 2026
com.example.medcuida.pro.app-main-57\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat com.example.medcuida.pro.app-main-57\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat
com.example.medcuida.pro.app-main-57\:/drawable/bg_gradient_header.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_gradient_header.xml.flat com.example.medcuida.pro.app-main-57\:/drawable/bg_gradient_header.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_gradient_header.xml.flat
com.example.medcuida.pro.app-main-57\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat com.example.medcuida.pro.app-main-57\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat

View File

@@ -11624,7 +11624,7 @@
<item name="android:textColor">@color/text_secondary</item> <item name="android:textColor">@color/text_secondary</item>
</style><style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small"> </style><style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small">
<item name="android:textColor">@color/text_primary</item> <item name="android:textColor">@color/text_primary</item>
</style></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">Cuida</string><string name="title_home">Início</string><string name="title_appointments">Consultas</string><string name="title_medication">Medicação</string><string name="title_sns24">SNS 24</string><string name="title_profile">Perfil</string><string name="login_title">Iniciar Sessão</string><string name="register_title">Criar Conta</string><string name="forgot_password">Esqueci-me da Palavra-passe</string><string name="email_hint">Email</string><string name="password_hint">Palavra-passe</string><string name="name_hint">Nome Completo</string><string name="age_hint">Idade</string><string name="login_button">Entrar</string><string name="register_button">Registar</string><string name="no_account">Não tem conta?</string><string name="already_account">Já tem conta?</string></file><file name="backup_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/backup_rules.xml" qualifiers="" type="xml"/><file name="data_extraction_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/data_extraction_rules.xml" qualifiers="" type="xml"/><file name="ic_launcher_final" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable-v26/ic_launcher_final.xml" qualifiers="v26" type="drawable"/><file name="bottom_nav_menu" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/bottom_nav_menu.xml" qualifiers="" type="menu"/><file name="menu_bottom" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/menu_bottom.xml" qualifiers="" type="menu"/><file name="ic_launcher" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_dark_mode" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable/ic_dark_mode.xml" qualifiers="" type="drawable"/><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/colors.xml" qualifiers="night-v8"><color name="primary_color">#64B5F6</color><color name="primary_light_color">#1E3A8A</color><color name="primary_dark_color">#0D47A1</color><color name="secondary_color">#3B82F6</color><color name="secondary_dark_color">#1E40AF</color><color name="background_color">#0F172A</color><color name="surface_color">#1E293B</color><color name="text_primary">#F8FAFC</color><color name="text_secondary">#94A3B8</color><color name="error_color">#F87171</color><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="white_as_surface">#1E293B</color><color name="stroke_color">#334155</color><color name="search_bar_background">#1E293B</color></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/themes.xml" qualifiers="night-v8"><style name="Theme.Cuida" parent="Theme.MaterialComponents.DayNight.NoActionBar"> </style></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">Cuida</string><string name="title_home">Início</string><string name="title_appointments">Consultas</string><string name="title_medication">Medicamentos</string><string name="title_sns24">SNS 24</string><string name="title_profile">Perfil</string><string name="login_title">Iniciar Sessão</string><string name="register_title">Criar Conta</string><string name="forgot_password">Esqueci-me da minha palavra-passe</string><string name="email_hint">Email</string><string name="password_hint">Palavra-passe</string><string name="name_hint">Nome Completo</string><string name="age_hint">Idade</string><string name="login_button">Entrar</string><string name="register_button">Registar</string><string name="no_account">Não tem conta?</string><string name="already_account">Já tem conta?</string></file><file name="backup_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/backup_rules.xml" qualifiers="" type="xml"/><file name="data_extraction_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/data_extraction_rules.xml" qualifiers="" type="xml"/><file name="ic_launcher_final" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable-v26/ic_launcher_final.xml" qualifiers="v26" type="drawable"/><file name="bottom_nav_menu" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/bottom_nav_menu.xml" qualifiers="" type="menu"/><file name="menu_bottom" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/menu_bottom.xml" qualifiers="" type="menu"/><file name="ic_launcher" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_dark_mode" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable/ic_dark_mode.xml" qualifiers="" type="drawable"/><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/colors.xml" qualifiers="night-v8"><color name="primary_color">#64B5F6</color><color name="primary_light_color">#1E3A8A</color><color name="primary_dark_color">#0D47A1</color><color name="secondary_color">#3B82F6</color><color name="secondary_dark_color">#1E40AF</color><color name="background_color">#0F172A</color><color name="surface_color">#1E293B</color><color name="text_primary">#F8FAFC</color><color name="text_secondary">#94A3B8</color><color name="error_color">#F87171</color><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="white_as_surface">#1E293B</color><color name="stroke_color">#334155</color><color name="search_bar_background">#1E293B</color></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/themes.xml" qualifiers="night-v8"><style name="Theme.Cuida" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="colorPrimary">@color/primary_color</item> <item name="colorPrimary">@color/primary_color</item>
<item name="colorPrimaryVariant">@color/primary_dark_color</item> <item name="colorPrimaryVariant">@color/primary_dark_color</item>

View File

@@ -1,4 +1,4 @@
#Tue May 12 16:17:34 WEST 2026 #Thu Jun 11 11:21:27 WEST 2026
com.example.medcuida.pro.app-main-6\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable-v26/ic_launcher_final.xml com.example.medcuida.pro.app-main-6\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable-v26/ic_launcher_final.xml
com.example.medcuida.pro.app-main-6\:/drawable/bg_gradient_header.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/bg_gradient_header.xml com.example.medcuida.pro.app-main-6\:/drawable/bg_gradient_header.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/bg_gradient_header.xml
com.example.medcuida.pro.app-main-6\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/btn_outline_error.xml com.example.medcuida.pro.app-main-6\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/med Cuida+/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/btn_outline_error.xml

View File

@@ -50,7 +50,7 @@
<item name="android:textColor">@color/text_secondary</item> <item name="android:textColor">@color/text_secondary</item>
</style><style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small"> </style><style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small">
<item name="android:textColor">@color/text_primary</item> <item name="android:textColor">@color/text_primary</item>
</style></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">Cuida</string><string name="title_home">Início</string><string name="title_appointments">Consultas</string><string name="title_medication">Medicação</string><string name="title_sns24">SNS 24</string><string name="title_profile">Perfil</string><string name="login_title">Iniciar Sessão</string><string name="register_title">Criar Conta</string><string name="forgot_password">Esqueci-me da Palavra-passe</string><string name="email_hint">Email</string><string name="password_hint">Palavra-passe</string><string name="name_hint">Nome Completo</string><string name="age_hint">Idade</string><string name="login_button">Entrar</string><string name="register_button">Registar</string><string name="no_account">Não tem conta?</string><string name="already_account">Já tem conta?</string></file><file name="backup_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/backup_rules.xml" qualifiers="" type="xml"/><file name="data_extraction_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/data_extraction_rules.xml" qualifiers="" type="xml"/><file name="ic_launcher_final" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable-v26/ic_launcher_final.xml" qualifiers="v26" type="drawable"/><file name="bottom_nav_menu" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/bottom_nav_menu.xml" qualifiers="" type="menu"/><file name="menu_bottom" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/menu_bottom.xml" qualifiers="" type="menu"/><file name="ic_launcher" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_dark_mode" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable/ic_dark_mode.xml" qualifiers="" type="drawable"/><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/colors.xml" qualifiers="night-v8"><color name="primary_color">#64B5F6</color><color name="primary_light_color">#1E3A8A</color><color name="primary_dark_color">#0D47A1</color><color name="secondary_color">#3B82F6</color><color name="secondary_dark_color">#1E40AF</color><color name="background_color">#0F172A</color><color name="surface_color">#1E293B</color><color name="text_primary">#F8FAFC</color><color name="text_secondary">#94A3B8</color><color name="error_color">#F87171</color><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="white_as_surface">#1E293B</color><color name="stroke_color">#334155</color><color name="search_bar_background">#1E293B</color></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/themes.xml" qualifiers="night-v8"><style name="Theme.Cuida" parent="Theme.MaterialComponents.DayNight.NoActionBar"> </style></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values/strings.xml" qualifiers=""><string name="app_name">Cuida</string><string name="title_home">Início</string><string name="title_appointments">Consultas</string><string name="title_medication">Medicamentos</string><string name="title_sns24">SNS 24</string><string name="title_profile">Perfil</string><string name="login_title">Iniciar Sessão</string><string name="register_title">Criar Conta</string><string name="forgot_password">Esqueci-me da minha palavra-passe</string><string name="email_hint">Email</string><string name="password_hint">Palavra-passe</string><string name="name_hint">Nome Completo</string><string name="age_hint">Idade</string><string name="login_button">Entrar</string><string name="register_button">Registar</string><string name="no_account">Não tem conta?</string><string name="already_account">Já tem conta?</string></file><file name="backup_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/backup_rules.xml" qualifiers="" type="xml"/><file name="data_extraction_rules" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/xml/data_extraction_rules.xml" qualifiers="" type="xml"/><file name="ic_launcher_final" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable-v26/ic_launcher_final.xml" qualifiers="v26" type="drawable"/><file name="bottom_nav_menu" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/bottom_nav_menu.xml" qualifiers="" type="menu"/><file name="menu_bottom" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/menu/menu_bottom.xml" qualifiers="" type="menu"/><file name="ic_launcher" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher_round" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_dark_mode" path="/Users/230405/Desktop/med Cuida+/app/src/main/res/drawable/ic_dark_mode.xml" qualifiers="" type="drawable"/><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/colors.xml" qualifiers="night-v8"><color name="primary_color">#64B5F6</color><color name="primary_light_color">#1E3A8A</color><color name="primary_dark_color">#0D47A1</color><color name="secondary_color">#3B82F6</color><color name="secondary_dark_color">#1E40AF</color><color name="background_color">#0F172A</color><color name="surface_color">#1E293B</color><color name="text_primary">#F8FAFC</color><color name="text_secondary">#94A3B8</color><color name="error_color">#F87171</color><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="white_as_surface">#1E293B</color><color name="stroke_color">#334155</color><color name="search_bar_background">#1E293B</color></file><file path="/Users/230405/Desktop/med Cuida+/app/src/main/res/values-night/themes.xml" qualifiers="night-v8"><style name="Theme.Cuida" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="colorPrimary">@color/primary_color</item> <item name="colorPrimary">@color/primary_color</item>
<item name="colorPrimaryVariant">@color/primary_dark_color</item> <item name="colorPrimaryVariant">@color/primary_dark_color</item>

View File

@@ -1,4 +1,4 @@
#Tue May 12 17:01:32 WEST 2026 #Wed Jun 03 15:32:43 WEST 2026
base.0=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex base.0=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
base.1=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex base.1=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
base.2=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex base.2=/Users/230405/Desktop/med Cuida+/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex

File diff suppressed because one or more lines are too long

View File

@@ -136,6 +136,7 @@ id text_consulta_status
id text_empty_state id text_empty_state
id text_paciente_email id text_paciente_email
id text_paciente_nome id text_paciente_nome
id text_paciente_utente
id text_pill_name id text_pill_name
id text_selected_date_full_hist id text_selected_date_full_hist
id toolbar id toolbar

View File

@@ -36,8 +36,8 @@
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/item_comprimido_search.xml" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/item_comprimido_search.xml"
}, },
{ {
"merged": "com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_login.xml", "merged": "com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_detalhe_paciente.xml",
"source": "com.example.medcuida.pro.app-main-57:/layout/activity_login.xml" "source": "com.example.medcuida.pro.app-main-57:/layout/activity_detalhe_paciente.xml"
}, },
{ {
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_forgot_password.xml", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_forgot_password.xml",

View File

@@ -3,10 +3,6 @@
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_launcher.xml.flat", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_launcher.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_launcher.xml" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_launcher.xml"
}, },
{
"merged": "com.example.medcuida.pro.app-debug-55:/layout_activity_login.xml.flat",
"source": "com.example.medcuida.pro.app-main-57:/layout/activity_login.xml"
},
{ {
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/layout_activity_editar_perfil.xml.flat", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/layout_activity_editar_perfil.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/activity_editar_perfil.xml" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/activity_editar_perfil.xml"
@@ -31,6 +27,10 @@
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_calendar.xml.flat", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_calendar.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_calendar.xml" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_calendar.xml"
}, },
{
"merged": "com.example.medcuida.pro.app-debug-55:/layout_activity_detalhe_paciente.xml.flat",
"source": "com.example.medcuida.pro.app-main-57:/layout/activity_detalhe_paciente.xml"
},
{ {
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/mipmap-xxxhdpi_ic_launcher_round.png.flat", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/mipmap-xxxhdpi_ic_launcher_round.png.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/mipmap-xxxhdpi/ic_launcher_round.png" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/mipmap-xxxhdpi/ic_launcher_round.png"
@@ -210,9 +210,5 @@
{ {
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_launcher_round.xml.flat", "merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_launcher_round.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_launcher_round.xml" "source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_launcher_round.xml"
},
{
"merged": "com.example.medcuida.pro.app-debug-55:/drawable_ic_logo_scaled.xml.flat",
"source": "com.example.medcuida.pro.app-main-57:/drawable/ic_logo_scaled.xml"
} }
] ]

View File

@@ -105,7 +105,7 @@
</LinearLayout> </LinearLayout>
</com.google.android.material.card.MaterialCardView> </com.google.android.material.card.MaterialCardView>
<!-- Card Medicação --> <!-- Card Medicamentos -->
<com.google.android.material.card.MaterialCardView <com.google.android.material.card.MaterialCardView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@@ -125,7 +125,7 @@
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Medicação Ativa" android:text="Medicamentos Ativos"
android:textStyle="bold" android:textStyle="bold"
android:textSize="22sp" android:textSize="22sp"
android:fontFamily="sans-serif-black" android:fontFamily="sans-serif-black"
@@ -136,7 +136,7 @@
android:id="@+id/tv_medicacao_paciente" android:id="@+id/tv_medicacao_paciente"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="A carregar medicação..." android:text="A carregar medicamentos..."
android:textSize="16sp" android:textSize="16sp"
android:textColor="@color/text_secondary" android:textColor="@color/text_secondary"
android:lineSpacingExtra="4dp"/> android:lineSpacingExtra="4dp"/>

View File

@@ -52,6 +52,15 @@
android:textSize="14sp" android:textSize="14sp"
android:layout_marginTop="2dp" android:layout_marginTop="2dp"
android:textColor="@color/text_secondary" /> android:textColor="@color/text_secondary" />
<TextView
android:id="@+id/text_paciente_utente"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nº Utente: 123456789"
android:textSize="14sp"
android:layout_marginTop="2dp"
android:textColor="@color/text_secondary" />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>

View File

@@ -25,7 +25,7 @@
<string name="default_web_client_id" translatable="false">844909242089-lvu2bh4u7hih6bm2a86rmdargnm4ul60.apps.googleusercontent.com</string> <string name="default_web_client_id" translatable="false">844909242089-lvu2bh4u7hih6bm2a86rmdargnm4ul60.apps.googleusercontent.com</string>
<string name="email_hint">Email</string> <string name="email_hint">Email</string>
<string name="firebase_database_url" translatable="false">https://cuidamais-7b904-default-rtdb.firebaseio.com</string> <string name="firebase_database_url" translatable="false">https://cuidamais-7b904-default-rtdb.firebaseio.com</string>
<string name="forgot_password">Esqueci-me da Palavra-passe</string> <string name="forgot_password">Esqueci-me da minha palavra-passe</string>
<string name="gcm_defaultSenderId" translatable="false">844909242089</string> <string name="gcm_defaultSenderId" translatable="false">844909242089</string>
<string name="google_api_key" translatable="false">AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4</string> <string name="google_api_key" translatable="false">AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4</string>
<string name="google_app_id" translatable="false">1:844909242089:android:e52c7c97535022a66ab278</string> <string name="google_app_id" translatable="false">1:844909242089:android:e52c7c97535022a66ab278</string>
@@ -41,7 +41,7 @@
<string name="register_title">Criar Conta</string> <string name="register_title">Criar Conta</string>
<string name="title_appointments">Consultas</string> <string name="title_appointments">Consultas</string>
<string name="title_home">Início</string> <string name="title_home">Início</string>
<string name="title_medication">Medicação</string> <string name="title_medication">Medicamentos</string>
<string name="title_profile">Perfil</string> <string name="title_profile">Perfil</string>
<string name="title_sns24">SNS 24</string> <string name="title_sns24">SNS 24</string>
<style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small"> <style name="CalendarDateText" parent="android:TextAppearance.DeviceDefault.Small">

View File

@@ -3786,75 +3786,76 @@ int id text_input_error_icon 0x7f090232
int id text_input_start_icon 0x7f090233 int id text_input_start_icon 0x7f090233
int id text_paciente_email 0x7f090234 int id text_paciente_email 0x7f090234
int id text_paciente_nome 0x7f090235 int id text_paciente_nome 0x7f090235
int id text_pill_name 0x7f090236 int id text_paciente_utente 0x7f090236
int id text_selected_date_full_hist 0x7f090237 int id text_pill_name 0x7f090237
int id textinput_counter 0x7f090238 int id text_selected_date_full_hist 0x7f090238
int id textinput_error 0x7f090239 int id textinput_counter 0x7f090239
int id textinput_helper_text 0x7f09023a int id textinput_error 0x7f09023a
int id textinput_placeholder 0x7f09023b int id textinput_helper_text 0x7f09023b
int id textinput_prefix_text 0x7f09023c int id textinput_placeholder 0x7f09023c
int id textinput_suffix_text 0x7f09023d int id textinput_prefix_text 0x7f09023d
int id time 0x7f09023e int id textinput_suffix_text 0x7f09023e
int id title 0x7f09023f int id time 0x7f09023f
int id titleDividerNoCustom 0x7f090240 int id title 0x7f090240
int id title_template 0x7f090241 int id titleDividerNoCustom 0x7f090241
int id toggle 0x7f090242 int id title_template 0x7f090242
int id toolbar 0x7f090243 int id toggle 0x7f090243
int id top 0x7f090244 int id toolbar 0x7f090244
int id topPanel 0x7f090245 int id top 0x7f090245
int id touch_outside 0x7f090246 int id topPanel 0x7f090246
int id transitionToEnd 0x7f090247 int id touch_outside 0x7f090247
int id transitionToStart 0x7f090248 int id transitionToEnd 0x7f090248
int id transition_current_scene 0x7f090249 int id transitionToStart 0x7f090249
int id transition_layout_save 0x7f09024a int id transition_current_scene 0x7f09024a
int id transition_position 0x7f09024b int id transition_layout_save 0x7f09024b
int id transition_scene_layoutid_cache 0x7f09024c int id transition_position 0x7f09024c
int id transition_transform 0x7f09024d int id transition_scene_layoutid_cache 0x7f09024d
int id triangle 0x7f09024e int id transition_transform 0x7f09024e
int id tv_cedula 0x7f09024f int id triangle 0x7f09024f
int id tv_email_medico 0x7f090250 int id tv_cedula 0x7f090250
int id tv_email_paciente 0x7f090251 int id tv_email_medico 0x7f090251
int id tv_especialidade 0x7f090252 int id tv_email_paciente 0x7f090252
int id tv_especialidade_fixed 0x7f090253 int id tv_especialidade 0x7f090253
int id tv_greeting_main 0x7f090254 int id tv_especialidade_fixed 0x7f090254
int id tv_horario_perfil 0x7f090255 int id tv_greeting_main 0x7f090255
int id tv_idade_paciente 0x7f090256 int id tv_horario_perfil 0x7f090256
int id tv_medicacao_paciente 0x7f090257 int id tv_idade_paciente 0x7f090257
int id tv_medico_fixed 0x7f090258 int id tv_medicacao_paciente 0x7f090258
int id tv_nome_medico 0x7f090259 int id tv_medico_fixed 0x7f090259
int id tv_nome_paciente 0x7f09025a int id tv_nome_medico 0x7f09025a
int id tv_numero_utente 0x7f09025b int id tv_nome_paciente 0x7f09025b
int id tv_paciente_selecionado_fixed 0x7f09025c int id tv_numero_utente 0x7f09025c
int id tv_sexo_paciente 0x7f09025d int id tv_paciente_selecionado_fixed 0x7f09025d
int id tv_time_slot 0x7f09025e int id tv_sexo_paciente 0x7f09025e
int id unchecked 0x7f09025f int id tv_time_slot 0x7f09025f
int id uniform 0x7f090260 int id unchecked 0x7f090260
int id unlabeled 0x7f090261 int id uniform 0x7f090261
int id up 0x7f090262 int id unlabeled 0x7f090262
int id useLogo 0x7f090263 int id up 0x7f090263
int id vertical_only 0x7f090264 int id useLogo 0x7f090264
int id view_aceites 0x7f090265 int id vertical_only 0x7f090265
int id view_agenda 0x7f090266 int id view_aceites 0x7f090266
int id view_offset_helper 0x7f090267 int id view_agenda 0x7f090267
int id view_pacientes 0x7f090268 int id view_offset_helper 0x7f090268
int id view_perfil 0x7f090269 int id view_pacientes 0x7f090269
int id view_transition 0x7f09026a int id view_perfil 0x7f09026a
int id view_tree_lifecycle_owner 0x7f09026b int id view_transition 0x7f09026b
int id view_tree_on_back_pressed_dispatcher_owner 0x7f09026c int id view_tree_lifecycle_owner 0x7f09026c
int id view_tree_saved_state_registry_owner 0x7f09026d int id view_tree_on_back_pressed_dispatcher_owner 0x7f09026d
int id view_tree_view_model_store_owner 0x7f09026e int id view_tree_saved_state_registry_owner 0x7f09026e
int id visible 0x7f09026f int id view_tree_view_model_store_owner 0x7f09026f
int id visible_removing_fragment_view_tag 0x7f090270 int id visible 0x7f090270
int id west 0x7f090271 int id visible_removing_fragment_view_tag 0x7f090271
int id wide 0x7f090272 int id west 0x7f090272
int id withText 0x7f090273 int id wide 0x7f090273
int id with_icon 0x7f090274 int id withText 0x7f090274
int id withinBounds 0x7f090275 int id with_icon 0x7f090275
int id wrap 0x7f090276 int id withinBounds 0x7f090276
int id wrap_content 0x7f090277 int id wrap 0x7f090277
int id wrap_content_constrained 0x7f090278 int id wrap_content 0x7f090278
int id x_left 0x7f090279 int id wrap_content_constrained 0x7f090279
int id x_right 0x7f09027a int id x_left 0x7f09027a
int id x_right 0x7f09027b
int integer abc_config_activityDefaultDur 0x7f0a0000 int integer abc_config_activityDefaultDur 0x7f0a0000
int integer abc_config_activityShortDur 0x7f0a0001 int integer abc_config_activityShortDur 0x7f0a0001
int integer app_bar_elevation_anim_duration 0x7f0a0002 int integer app_bar_elevation_anim_duration 0x7f0a0002

View File

@@ -1166,63 +1166,63 @@ com.example.medcuida.pro:integer/abc_config_activityShortDur = 0x7f0a0001
com.example.medcuida.pro:style/Widget.MaterialComponents.Toolbar = 0x7f14045f com.example.medcuida.pro:style/Widget.MaterialComponents.Toolbar = 0x7f14045f
com.example.medcuida.pro:integer/abc_config_activityDefaultDur = 0x7f0a0000 com.example.medcuida.pro:integer/abc_config_activityDefaultDur = 0x7f0a0000
com.example.medcuida.pro:style/ThemeOverlay.MaterialComponents.Light = 0x7f1402d3 com.example.medcuida.pro:style/ThemeOverlay.MaterialComponents.Light = 0x7f1402d3
com.example.medcuida.pro:id/x_right = 0x7f09027a com.example.medcuida.pro:id/x_right = 0x7f09027b
com.example.medcuida.pro:id/x_left = 0x7f090279 com.example.medcuida.pro:id/x_left = 0x7f09027a
com.example.medcuida.pro:id/wrap_content = 0x7f090277 com.example.medcuida.pro:id/wrap_content = 0x7f090278
com.example.medcuida.pro:id/with_icon = 0x7f090274 com.example.medcuida.pro:id/with_icon = 0x7f090275
com.example.medcuida.pro:id/withText = 0x7f090273 com.example.medcuida.pro:id/withText = 0x7f090274
com.example.medcuida.pro:id/wide = 0x7f090272 com.example.medcuida.pro:id/wide = 0x7f090273
com.example.medcuida.pro:styleable/FloatingActionButton_Behavior_Layout = 0x7f150038 com.example.medcuida.pro:styleable/FloatingActionButton_Behavior_Layout = 0x7f150038
com.example.medcuida.pro:style/Widget.Material3.CardView.Outlined = 0x7f140369 com.example.medcuida.pro:style/Widget.Material3.CardView.Outlined = 0x7f140369
com.example.medcuida.pro:id/west = 0x7f090271 com.example.medcuida.pro:id/west = 0x7f090272
com.example.medcuida.pro:macro/m3_comp_extended_fab_tertiary_icon_color = 0x7f0d0036 com.example.medcuida.pro:macro/m3_comp_extended_fab_tertiary_icon_color = 0x7f0d0036
com.example.medcuida.pro:id/visible = 0x7f09026f com.example.medcuida.pro:id/visible = 0x7f090270
com.example.medcuida.pro:id/view_tree_view_model_store_owner = 0x7f09026e com.example.medcuida.pro:id/view_tree_view_model_store_owner = 0x7f09026f
com.example.medcuida.pro:style/Widget.MaterialComponents.ProgressIndicator = 0x7f14043f com.example.medcuida.pro:style/Widget.MaterialComponents.ProgressIndicator = 0x7f14043f
com.example.medcuida.pro:id/view_tree_saved_state_registry_owner = 0x7f09026d com.example.medcuida.pro:id/view_tree_saved_state_registry_owner = 0x7f09026e
com.example.medcuida.pro:id/view_transition = 0x7f09026a com.example.medcuida.pro:id/view_transition = 0x7f09026b
com.example.medcuida.pro:id/view_perfil = 0x7f090269 com.example.medcuida.pro:id/view_perfil = 0x7f09026a
com.example.medcuida.pro:id/view_pacientes = 0x7f090268 com.example.medcuida.pro:id/view_pacientes = 0x7f090269
com.example.medcuida.pro:id/view_agenda = 0x7f090266 com.example.medcuida.pro:id/view_agenda = 0x7f090267
com.example.medcuida.pro:style/Base.V23.Theme.AppCompat.Light = 0x7f1400b0 com.example.medcuida.pro:style/Base.V23.Theme.AppCompat.Light = 0x7f1400b0
com.example.medcuida.pro:layout/mtrl_picker_header_fullscreen = 0x7f0c0069 com.example.medcuida.pro:layout/mtrl_picker_header_fullscreen = 0x7f0c0069
com.example.medcuida.pro:id/view_aceites = 0x7f090265 com.example.medcuida.pro:id/view_aceites = 0x7f090266
com.example.medcuida.pro:id/vertical_only = 0x7f090264 com.example.medcuida.pro:id/vertical_only = 0x7f090265
com.example.medcuida.pro:id/up = 0x7f090262 com.example.medcuida.pro:id/up = 0x7f090263
com.example.medcuida.pro:id/uniform = 0x7f090260 com.example.medcuida.pro:id/uniform = 0x7f090261
com.example.medcuida.pro:style/TextAppearance.AppCompat.Subhead = 0x7f1401af com.example.medcuida.pro:style/TextAppearance.AppCompat.Subhead = 0x7f1401af
com.example.medcuida.pro:id/tv_paciente_selecionado_fixed = 0x7f09025c com.example.medcuida.pro:id/tv_paciente_selecionado_fixed = 0x7f09025d
com.example.medcuida.pro:id/tv_numero_utente = 0x7f09025b com.example.medcuida.pro:id/tv_numero_utente = 0x7f09025c
com.example.medcuida.pro:id/tv_nome_paciente = 0x7f09025a com.example.medcuida.pro:id/tv_nome_paciente = 0x7f09025b
com.example.medcuida.pro:id/tv_medico_fixed = 0x7f090258 com.example.medcuida.pro:id/tv_medico_fixed = 0x7f090259
com.example.medcuida.pro:id/tv_idade_paciente = 0x7f090256 com.example.medcuida.pro:id/tv_idade_paciente = 0x7f090257
com.example.medcuida.pro:id/tv_greeting_main = 0x7f090254 com.example.medcuida.pro:id/tv_greeting_main = 0x7f090255
com.example.medcuida.pro:style/Widget.Material3.SideSheet = 0x7f1403ca com.example.medcuida.pro:style/Widget.Material3.SideSheet = 0x7f1403ca
com.example.medcuida.pro:id/tv_especialidade_fixed = 0x7f090253 com.example.medcuida.pro:id/tv_especialidade_fixed = 0x7f090254
com.example.medcuida.pro:id/tv_email_medico = 0x7f090250 com.example.medcuida.pro:id/tv_email_medico = 0x7f090251
com.example.medcuida.pro:id/transition_transform = 0x7f09024d com.example.medcuida.pro:id/transition_transform = 0x7f09024e
com.example.medcuida.pro:id/transition_scene_layoutid_cache = 0x7f09024c com.example.medcuida.pro:id/transition_scene_layoutid_cache = 0x7f09024d
com.example.medcuida.pro:id/transition_position = 0x7f09024b com.example.medcuida.pro:id/transition_position = 0x7f09024c
com.example.medcuida.pro:id/transitionToStart = 0x7f090248 com.example.medcuida.pro:id/transitionToStart = 0x7f090249
com.example.medcuida.pro:id/transitionToEnd = 0x7f090247 com.example.medcuida.pro:id/transitionToEnd = 0x7f090248
com.example.medcuida.pro:macro/m3_comp_filled_tonal_button_label_text_color = 0x7f0d0054 com.example.medcuida.pro:macro/m3_comp_filled_tonal_button_label_text_color = 0x7f0d0054
com.example.medcuida.pro:id/topPanel = 0x7f090245 com.example.medcuida.pro:id/topPanel = 0x7f090246
com.example.medcuida.pro:macro/m3_comp_switch_unselected_pressed_track_outline_color = 0x7f0d0140 com.example.medcuida.pro:macro/m3_comp_switch_unselected_pressed_track_outline_color = 0x7f0d0140
com.example.medcuida.pro:id/toolbar = 0x7f090243 com.example.medcuida.pro:id/toolbar = 0x7f090244
com.example.medcuida.pro:styleable/RadialViewGroup = 0x7f150080 com.example.medcuida.pro:styleable/RadialViewGroup = 0x7f150080
com.example.medcuida.pro:id/toggle = 0x7f090242 com.example.medcuida.pro:id/toggle = 0x7f090243
com.example.medcuida.pro:id/titleDividerNoCustom = 0x7f090240 com.example.medcuida.pro:id/titleDividerNoCustom = 0x7f090241
com.example.medcuida.pro:id/title = 0x7f09023f com.example.medcuida.pro:id/title = 0x7f090240
com.example.medcuida.pro:layout/abc_alert_dialog_material = 0x7f0c0009 com.example.medcuida.pro:layout/abc_alert_dialog_material = 0x7f0c0009
com.example.medcuida.pro:id/textinput_suffix_text = 0x7f09023d com.example.medcuida.pro:id/textinput_suffix_text = 0x7f09023e
com.example.medcuida.pro:styleable/KeyFramesVelocity = 0x7f150048 com.example.medcuida.pro:styleable/KeyFramesVelocity = 0x7f150048
com.example.medcuida.pro:id/textinput_prefix_text = 0x7f09023c com.example.medcuida.pro:id/textinput_prefix_text = 0x7f09023d
com.example.medcuida.pro:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f140111 com.example.medcuida.pro:style/Base.Widget.MaterialComponents.AutoCompleteTextView = 0x7f140111
com.example.medcuida.pro:id/textinput_placeholder = 0x7f09023b com.example.medcuida.pro:id/textinput_placeholder = 0x7f09023c
com.example.medcuida.pro:macro/m3_comp_date_picker_modal_date_selected_label_text_color = 0x7f0d0012 com.example.medcuida.pro:macro/m3_comp_date_picker_modal_date_selected_label_text_color = 0x7f0d0012
com.example.medcuida.pro:id/textinput_error = 0x7f090239 com.example.medcuida.pro:id/textinput_error = 0x7f09023a
com.example.medcuida.pro:id/textinput_counter = 0x7f090238 com.example.medcuida.pro:id/textinput_counter = 0x7f090239
com.example.medcuida.pro:id/text_selected_date_full_hist = 0x7f090237 com.example.medcuida.pro:id/text_selected_date_full_hist = 0x7f090238
com.example.medcuida.pro:macro/m3_comp_elevated_card_container_color = 0x7f0d002b com.example.medcuida.pro:macro/m3_comp_elevated_card_container_color = 0x7f0d002b
com.example.medcuida.pro:id/text_paciente_nome = 0x7f090235 com.example.medcuida.pro:id/text_paciente_nome = 0x7f090235
com.example.medcuida.pro:id/text_paciente_email = 0x7f090234 com.example.medcuida.pro:id/text_paciente_email = 0x7f090234
@@ -1263,7 +1263,7 @@ com.example.medcuida.pro:id/standard = 0x7f090209
com.example.medcuida.pro:id/src_over = 0x7f090208 com.example.medcuida.pro:id/src_over = 0x7f090208
com.example.medcuida.pro:id/src_in = 0x7f090207 com.example.medcuida.pro:id/src_in = 0x7f090207
com.example.medcuida.pro:id/src_atop = 0x7f090206 com.example.medcuida.pro:id/src_atop = 0x7f090206
com.example.medcuida.pro:id/top = 0x7f090244 com.example.medcuida.pro:id/top = 0x7f090245
com.example.medcuida.pro:id/square = 0x7f090205 com.example.medcuida.pro:id/square = 0x7f090205
com.example.medcuida.pro:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f140190 com.example.medcuida.pro:style/ShapeAppearanceOverlay.MaterialComponents.Chip = 0x7f140190
com.example.medcuida.pro:id/spread_inside = 0x7f090203 com.example.medcuida.pro:id/spread_inside = 0x7f090203
@@ -1512,7 +1512,7 @@ com.example.medcuida.pro:styleable/MotionLayout = 0x7f15006c
com.example.medcuida.pro:id/dragClockwise = 0x7f0900c2 com.example.medcuida.pro:id/dragClockwise = 0x7f0900c2
com.example.medcuida.pro:id/dragAnticlockwise = 0x7f0900c1 com.example.medcuida.pro:id/dragAnticlockwise = 0x7f0900c1
com.example.medcuida.pro:id/disjoint = 0x7f0900c0 com.example.medcuida.pro:id/disjoint = 0x7f0900c0
com.example.medcuida.pro:id/title_template = 0x7f090241 com.example.medcuida.pro:id/title_template = 0x7f090242
com.example.medcuida.pro:id/disableScroll = 0x7f0900bf com.example.medcuida.pro:id/disableScroll = 0x7f0900bf
com.example.medcuida.pro:id/disableIntraAutoTransition = 0x7f0900bd com.example.medcuida.pro:id/disableIntraAutoTransition = 0x7f0900bd
com.example.medcuida.pro:id/disableHome = 0x7f0900bc com.example.medcuida.pro:id/disableHome = 0x7f0900bc
@@ -1628,7 +1628,7 @@ com.example.medcuida.pro:macro/m3_comp_time_input_time_input_field_focus_outline
com.example.medcuida.pro:id/accessibility_custom_action_5 = 0x7f09002b com.example.medcuida.pro:id/accessibility_custom_action_5 = 0x7f09002b
com.example.medcuida.pro:id/accessibility_custom_action_4 = 0x7f09002a com.example.medcuida.pro:id/accessibility_custom_action_4 = 0x7f09002a
com.example.medcuida.pro:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f140134 com.example.medcuida.pro:style/MaterialAlertDialog.MaterialComponents.Title.Icon = 0x7f140134
com.example.medcuida.pro:id/wrap = 0x7f090276 com.example.medcuida.pro:id/wrap = 0x7f090277
com.example.medcuida.pro:id/accessibility_custom_action_31 = 0x7f090029 com.example.medcuida.pro:id/accessibility_custom_action_31 = 0x7f090029
com.example.medcuida.pro:id/accessibility_custom_action_30 = 0x7f090028 com.example.medcuida.pro:id/accessibility_custom_action_30 = 0x7f090028
com.example.medcuida.pro:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f140259 com.example.medcuida.pro:style/Theme.MaterialComponents.DayNight.DialogWhenLarge = 0x7f140259
@@ -1815,7 +1815,7 @@ com.example.medcuida.pro:drawable/abc_star_half_black_48dp = 0x7f080068
com.example.medcuida.pro:drawable/abc_spinner_textfield_background_material = 0x7f080066 com.example.medcuida.pro:drawable/abc_spinner_textfield_background_material = 0x7f080066
com.example.medcuida.pro:layout/material_radial_view_group = 0x7f0c004a com.example.medcuida.pro:layout/material_radial_view_group = 0x7f0c004a
com.example.medcuida.pro:integer/m3_sys_motion_path = 0x7f0a0021 com.example.medcuida.pro:integer/m3_sys_motion_path = 0x7f0a0021
com.example.medcuida.pro:id/time = 0x7f09023e com.example.medcuida.pro:id/time = 0x7f09023f
com.example.medcuida.pro:drawable/abc_seekbar_tick_mark_material = 0x7f080063 com.example.medcuida.pro:drawable/abc_seekbar_tick_mark_material = 0x7f080063
com.example.medcuida.pro:color/m3_button_foreground_color_selector = 0x7f060077 com.example.medcuida.pro:color/m3_button_foreground_color_selector = 0x7f060077
com.example.medcuida.pro:drawable/abc_scrubber_track_mtrl_alpha = 0x7f080061 com.example.medcuida.pro:drawable/abc_scrubber_track_mtrl_alpha = 0x7f080061
@@ -1918,7 +1918,7 @@ com.example.medcuida.pro:dimen/notification_large_icon_width = 0x7f07030d
com.example.medcuida.pro:dimen/notification_large_icon_height = 0x7f07030c com.example.medcuida.pro:dimen/notification_large_icon_height = 0x7f07030c
com.example.medcuida.pro:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f1400c3 com.example.medcuida.pro:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f1400c3
com.example.medcuida.pro:dimen/notification_big_circle_margin = 0x7f07030a com.example.medcuida.pro:dimen/notification_big_circle_margin = 0x7f07030a
com.example.medcuida.pro:id/tv_medicacao_paciente = 0x7f090257 com.example.medcuida.pro:id/tv_medicacao_paciente = 0x7f090258
com.example.medcuida.pro:color/material_dynamic_secondary80 = 0x7f060261 com.example.medcuida.pro:color/material_dynamic_secondary80 = 0x7f060261
com.example.medcuida.pro:drawable/material_ic_clear_black_24dp = 0x7f0800d7 com.example.medcuida.pro:drawable/material_ic_clear_black_24dp = 0x7f0800d7
com.example.medcuida.pro:layout/abc_list_menu_item_icon = 0x7f0c000f com.example.medcuida.pro:layout/abc_list_menu_item_icon = 0x7f0c000f
@@ -2430,13 +2430,14 @@ com.example.medcuida.pro:style/Widget.MaterialComponents.TimePicker.Display.Text
com.example.medcuida.pro:string/m3_sys_motion_easing_linear = 0x7f130075 com.example.medcuida.pro:string/m3_sys_motion_easing_linear = 0x7f130075
com.example.medcuida.pro:drawable/$m3_avd_hide_password__2 = 0x7f080008 com.example.medcuida.pro:drawable/$m3_avd_hide_password__2 = 0x7f080008
com.example.medcuida.pro:dimen/m3_btn_text_btn_padding_left = 0x7f0700e3 com.example.medcuida.pro:dimen/m3_btn_text_btn_padding_left = 0x7f0700e3
com.example.medcuida.pro:id/tv_horario_perfil = 0x7f090255 com.example.medcuida.pro:id/tv_horario_perfil = 0x7f090256
com.example.medcuida.pro:color/material_personalized_color_on_error = 0x7f060290 com.example.medcuida.pro:color/material_personalized_color_on_error = 0x7f060290
com.example.medcuida.pro:dimen/m3_btn_text_btn_icon_padding_left = 0x7f0700e1 com.example.medcuida.pro:dimen/m3_btn_text_btn_icon_padding_left = 0x7f0700e1
com.example.medcuida.pro:id/tv_time_slot = 0x7f09025e com.example.medcuida.pro:id/tv_time_slot = 0x7f09025f
com.example.medcuida.pro:dimen/m3_btn_stroke_size = 0x7f0700e0 com.example.medcuida.pro:dimen/m3_btn_stroke_size = 0x7f0700e0
com.example.medcuida.pro:dimen/m3_btn_padding_top = 0x7f0700df com.example.medcuida.pro:dimen/m3_btn_padding_top = 0x7f0700df
com.example.medcuida.pro:macro/m3_comp_navigation_drawer_inactive_focus_icon_color = 0x7f0d0089 com.example.medcuida.pro:macro/m3_comp_navigation_drawer_inactive_focus_icon_color = 0x7f0d0089
com.example.medcuida.pro:id/text_paciente_utente = 0x7f090236
com.example.medcuida.pro:attr/itemShapeInsetBottom = 0x7f040268 com.example.medcuida.pro:attr/itemShapeInsetBottom = 0x7f040268
com.example.medcuida.pro:drawable/$m3_avd_hide_password__1 = 0x7f080007 com.example.medcuida.pro:drawable/$m3_avd_hide_password__1 = 0x7f080007
com.example.medcuida.pro:color/m3_ref_palette_tertiary100 = 0x7f060155 com.example.medcuida.pro:color/m3_ref_palette_tertiary100 = 0x7f060155
@@ -2735,7 +2736,7 @@ com.example.medcuida.pro:style/Widget.Material3.MaterialCalendar.HeaderCancelBut
com.example.medcuida.pro:color/mtrl_btn_text_color_selector = 0x7f0602cc com.example.medcuida.pro:color/mtrl_btn_text_color_selector = 0x7f0602cc
com.example.medcuida.pro:style/Base.TextAppearance.AppCompat.Display1 = 0x7f14001b com.example.medcuida.pro:style/Base.TextAppearance.AppCompat.Display1 = 0x7f14001b
com.example.medcuida.pro:color/mtrl_btn_text_btn_bg_color_selector = 0x7f0602c9 com.example.medcuida.pro:color/mtrl_btn_text_btn_bg_color_selector = 0x7f0602c9
com.example.medcuida.pro:id/wrap_content_constrained = 0x7f090278 com.example.medcuida.pro:id/wrap_content_constrained = 0x7f090279
com.example.medcuida.pro:id/card_time_slot = 0x7f090086 com.example.medcuida.pro:id/card_time_slot = 0x7f090086
com.example.medcuida.pro:color/mtrl_btn_bg_color_selector = 0x7f0602c6 com.example.medcuida.pro:color/mtrl_btn_bg_color_selector = 0x7f0602c6
com.example.medcuida.pro:style/MaterialAlertDialog.Material3.Title.Panel = 0x7f14012c com.example.medcuida.pro:style/MaterialAlertDialog.Material3.Title.Panel = 0x7f14012c
@@ -3259,7 +3260,7 @@ com.example.medcuida.pro:color/m3_ref_palette_neutral60 = 0x7f060121
com.example.medcuida.pro:color/m3_ref_palette_neutral6 = 0x7f060120 com.example.medcuida.pro:color/m3_ref_palette_neutral6 = 0x7f060120
com.example.medcuida.pro:attr/state_error = 0x7f040416 com.example.medcuida.pro:attr/state_error = 0x7f040416
com.example.medcuida.pro:drawable/$mtrl_checkbox_button_icon_checked_unchecked__2 = 0x7f080012 com.example.medcuida.pro:drawable/$mtrl_checkbox_button_icon_checked_unchecked__2 = 0x7f080012
com.example.medcuida.pro:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f09026c com.example.medcuida.pro:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f09026d
com.example.medcuida.pro:attr/colorSecondary = 0x7f040124 com.example.medcuida.pro:attr/colorSecondary = 0x7f040124
com.example.medcuida.pro:color/m3_ref_palette_neutral50 = 0x7f06011f com.example.medcuida.pro:color/m3_ref_palette_neutral50 = 0x7f06011f
com.example.medcuida.pro:attr/textAppearanceHeadlineLarge = 0x7f040466 com.example.medcuida.pro:attr/textAppearanceHeadlineLarge = 0x7f040466
@@ -3331,7 +3332,7 @@ com.example.medcuida.pro:color/material_dynamic_secondary10 = 0x7f060259
com.example.medcuida.pro:color/m3_tabs_ripple_color = 0x7f06020b com.example.medcuida.pro:color/m3_tabs_ripple_color = 0x7f06020b
com.example.medcuida.pro:color/material_slider_active_tick_marks_color = 0x7f0602bb com.example.medcuida.pro:color/material_slider_active_tick_marks_color = 0x7f0602bb
com.example.medcuida.pro:macro/m3_comp_sheet_side_docked_modal_container_color = 0x7f0d0109 com.example.medcuida.pro:macro/m3_comp_sheet_side_docked_modal_container_color = 0x7f0d0109
com.example.medcuida.pro:id/transition_layout_save = 0x7f09024a com.example.medcuida.pro:id/transition_layout_save = 0x7f09024b
com.example.medcuida.pro:color/m3_ref_palette_dynamic_tertiary0 = 0x7f0600fa com.example.medcuida.pro:color/m3_ref_palette_dynamic_tertiary0 = 0x7f0600fa
com.example.medcuida.pro:dimen/mtrl_calendar_action_height = 0x7f07026f com.example.medcuida.pro:dimen/mtrl_calendar_action_height = 0x7f07026f
com.example.medcuida.pro:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f14030a com.example.medcuida.pro:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f14030a
@@ -3422,7 +3423,7 @@ com.example.medcuida.pro:dimen/m3_ripple_hovered_alpha = 0x7f0701d3
com.example.medcuida.pro:color/mtrl_btn_transparent_bg_color = 0x7f0602cd com.example.medcuida.pro:color/mtrl_btn_transparent_bg_color = 0x7f0602cd
com.example.medcuida.pro:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1402d6 com.example.medcuida.pro:style/ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered = 0x7f1402d6
com.example.medcuida.pro:color/m3_ref_palette_dynamic_neutral94 = 0x7f0600c3 com.example.medcuida.pro:color/m3_ref_palette_dynamic_neutral94 = 0x7f0600c3
com.example.medcuida.pro:id/view_tree_lifecycle_owner = 0x7f09026b com.example.medcuida.pro:id/view_tree_lifecycle_owner = 0x7f09026c
com.example.medcuida.pro:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f070285 com.example.medcuida.pro:dimen/mtrl_calendar_maximum_default_fullscreen_minor_axis = 0x7f070285
com.example.medcuida.pro:style/Base.V7.Theme.AppCompat.Light = 0x7f1400bc com.example.medcuida.pro:style/Base.V7.Theme.AppCompat.Light = 0x7f1400bc
com.example.medcuida.pro:id/default_activity_button = 0x7f0900b1 com.example.medcuida.pro:id/default_activity_button = 0x7f0900b1
@@ -3983,7 +3984,7 @@ com.example.medcuida.pro:dimen/m3_sys_motion_easing_legacy_accelerate_control_y1
com.example.medcuida.pro:color/design_default_color_on_error = 0x7f060053 com.example.medcuida.pro:color/design_default_color_on_error = 0x7f060053
com.example.medcuida.pro:attr/shapeAppearance = 0x7f0403d5 com.example.medcuida.pro:attr/shapeAppearance = 0x7f0403d5
com.example.medcuida.pro:layout/abc_screen_content_include = 0x7f0c0014 com.example.medcuida.pro:layout/abc_screen_content_include = 0x7f0c0014
com.example.medcuida.pro:id/unchecked = 0x7f09025f com.example.medcuida.pro:id/unchecked = 0x7f090260
com.example.medcuida.pro:attr/selectorSize = 0x7f0403d3 com.example.medcuida.pro:attr/selectorSize = 0x7f0403d3
com.example.medcuida.pro:style/Widget.Material3.AppBarLayout = 0x7f140344 com.example.medcuida.pro:style/Widget.Material3.AppBarLayout = 0x7f140344
com.example.medcuida.pro:integer/material_motion_duration_medium_1 = 0x7f0a002a com.example.medcuida.pro:integer/material_motion_duration_medium_1 = 0x7f0a002a
@@ -4078,7 +4079,7 @@ com.example.medcuida.pro:color/material_personalized_color_surface_container_low
com.example.medcuida.pro:attr/colorTertiaryFixedDim = 0x7f040137 com.example.medcuida.pro:attr/colorTertiaryFixedDim = 0x7f040137
com.example.medcuida.pro:attr/quantizeMotionPhase = 0x7f0403a8 com.example.medcuida.pro:attr/quantizeMotionPhase = 0x7f0403a8
com.example.medcuida.pro:drawable/abc_list_pressed_holo_light = 0x7f080051 com.example.medcuida.pro:drawable/abc_list_pressed_holo_light = 0x7f080051
com.example.medcuida.pro:id/tv_nome_medico = 0x7f090259 com.example.medcuida.pro:id/tv_nome_medico = 0x7f09025a
com.example.medcuida.pro:dimen/mtrl_calendar_header_height_fullscreen = 0x7f07027f com.example.medcuida.pro:dimen/mtrl_calendar_header_height_fullscreen = 0x7f07027f
com.example.medcuida.pro:attr/actionModeFindDrawable = 0x7f040019 com.example.medcuida.pro:attr/actionModeFindDrawable = 0x7f040019
com.example.medcuida.pro:style/Widget.Material3.CompoundButton.RadioButton = 0x7f14037f com.example.medcuida.pro:style/Widget.Material3.CompoundButton.RadioButton = 0x7f14037f
@@ -4261,7 +4262,7 @@ com.example.medcuida.pro:macro/m3_comp_sheet_bottom_docked_drag_handle_color = 0
com.example.medcuida.pro:attr/tabInlineLabel = 0x7f04043f com.example.medcuida.pro:attr/tabInlineLabel = 0x7f04043f
com.example.medcuida.pro:attr/haloColor = 0x7f040222 com.example.medcuida.pro:attr/haloColor = 0x7f040222
com.example.medcuida.pro:string/character_counter_overflowed_content_description = 0x7f130030 com.example.medcuida.pro:string/character_counter_overflowed_content_description = 0x7f130030
com.example.medcuida.pro:id/textinput_helper_text = 0x7f09023a com.example.medcuida.pro:id/textinput_helper_text = 0x7f09023b
com.example.medcuida.pro:attr/motionEffect_strict = 0x7f040352 com.example.medcuida.pro:attr/motionEffect_strict = 0x7f040352
com.example.medcuida.pro:drawable/$mtrl_switch_thumb_unchecked_checked__1 = 0x7f080026 com.example.medcuida.pro:drawable/$mtrl_switch_thumb_unchecked_checked__1 = 0x7f080026
com.example.medcuida.pro:attr/motionEffect_start = 0x7f040351 com.example.medcuida.pro:attr/motionEffect_start = 0x7f040351
@@ -4348,7 +4349,7 @@ com.example.medcuida.pro:attr/methodName = 0x7f040324
com.example.medcuida.pro:attr/destination = 0x7f040184 com.example.medcuida.pro:attr/destination = 0x7f040184
com.example.medcuida.pro:dimen/m3_simple_item_color_hovered_alpha = 0x7f0701e5 com.example.medcuida.pro:dimen/m3_simple_item_color_hovered_alpha = 0x7f0701e5
com.example.medcuida.pro:attr/maxWidth = 0x7f04031f com.example.medcuida.pro:attr/maxWidth = 0x7f04031f
com.example.medcuida.pro:id/touch_outside = 0x7f090246 com.example.medcuida.pro:id/touch_outside = 0x7f090247
com.example.medcuida.pro:id/jumpToStart = 0x7f090123 com.example.medcuida.pro:id/jumpToStart = 0x7f090123
com.example.medcuida.pro:attr/lineSpacing = 0x7f0402ce com.example.medcuida.pro:attr/lineSpacing = 0x7f0402ce
com.example.medcuida.pro:color/design_dark_default_color_primary_variant = 0x7f06004c com.example.medcuida.pro:color/design_dark_default_color_primary_variant = 0x7f06004c
@@ -4511,7 +4512,7 @@ com.example.medcuida.pro:style/ShapeAppearanceOverlay.Material3.Corner.Right = 0
com.example.medcuida.pro:attr/startIconTint = 0x7f040410 com.example.medcuida.pro:attr/startIconTint = 0x7f040410
com.example.medcuida.pro:attr/colorOnSecondary = 0x7f04010e com.example.medcuida.pro:attr/colorOnSecondary = 0x7f04010e
com.example.medcuida.pro:attr/listChoiceIndicatorSingleAnimated = 0x7f0402d2 com.example.medcuida.pro:attr/listChoiceIndicatorSingleAnimated = 0x7f0402d2
com.example.medcuida.pro:id/triangle = 0x7f09024e com.example.medcuida.pro:id/triangle = 0x7f09024f
com.example.medcuida.pro:attr/listChoiceIndicatorMultipleAnimated = 0x7f0402d1 com.example.medcuida.pro:attr/listChoiceIndicatorMultipleAnimated = 0x7f0402d1
com.example.medcuida.pro:id/sharedValueSet = 0x7f0901ec com.example.medcuida.pro:id/sharedValueSet = 0x7f0901ec
com.example.medcuida.pro:drawable/ic_mtrl_chip_checked_black = 0x7f0800ba com.example.medcuida.pro:drawable/ic_mtrl_chip_checked_black = 0x7f0800ba
@@ -4522,7 +4523,7 @@ com.example.medcuida.pro:attr/lineHeight = 0x7f0402cd
com.example.medcuida.pro:dimen/m3_btn_icon_btn_padding_left = 0x7f0700d4 com.example.medcuida.pro:dimen/m3_btn_icon_btn_padding_left = 0x7f0700d4
com.example.medcuida.pro:attr/liftOnScrollColor = 0x7f0402ca com.example.medcuida.pro:attr/liftOnScrollColor = 0x7f0402ca
com.example.medcuida.pro:style/Widget.Material3.MaterialCalendar.HeaderToggleButton = 0x7f1403a8 com.example.medcuida.pro:style/Widget.Material3.MaterialCalendar.HeaderToggleButton = 0x7f1403a8
com.example.medcuida.pro:id/tv_sexo_paciente = 0x7f09025d com.example.medcuida.pro:id/tv_sexo_paciente = 0x7f09025e
com.example.medcuida.pro:id/action_bar_subtitle = 0x7f090039 com.example.medcuida.pro:id/action_bar_subtitle = 0x7f090039
com.example.medcuida.pro:color/ripple_material_light = 0x7f06030e com.example.medcuida.pro:color/ripple_material_light = 0x7f06030e
com.example.medcuida.pro:attr/expandedTitleMarginBottom = 0x7f0401cb com.example.medcuida.pro:attr/expandedTitleMarginBottom = 0x7f0401cb
@@ -4647,7 +4648,7 @@ com.example.medcuida.pro:color/material_grey_50 = 0x7f060274
com.example.medcuida.pro:attr/fastScrollVerticalThumbDrawable = 0x7f0401e5 com.example.medcuida.pro:attr/fastScrollVerticalThumbDrawable = 0x7f0401e5
com.example.medcuida.pro:attr/boxCollapsedPaddingTop = 0x7f040085 com.example.medcuida.pro:attr/boxCollapsedPaddingTop = 0x7f040085
com.example.medcuida.pro:macro/m3_comp_secondary_navigation_tab_container_color = 0x7f0d00fd com.example.medcuida.pro:macro/m3_comp_secondary_navigation_tab_container_color = 0x7f0d00fd
com.example.medcuida.pro:id/tv_cedula = 0x7f09024f com.example.medcuida.pro:id/tv_cedula = 0x7f090250
com.example.medcuida.pro:attr/borderRound = 0x7f040079 com.example.medcuida.pro:attr/borderRound = 0x7f040079
com.example.medcuida.pro:attr/useDrawerArrowDrawable = 0x7f0404e5 com.example.medcuida.pro:attr/useDrawerArrowDrawable = 0x7f0404e5
com.example.medcuida.pro:dimen/m3_btn_text_btn_icon_padding_right = 0x7f0700e2 com.example.medcuida.pro:dimen/m3_btn_text_btn_icon_padding_right = 0x7f0700e2
@@ -4701,7 +4702,7 @@ com.example.medcuida.pro:attr/itemHorizontalPadding = 0x7f04025a
com.example.medcuida.pro:attr/colorControlNormal = 0x7f040101 com.example.medcuida.pro:attr/colorControlNormal = 0x7f040101
com.example.medcuida.pro:id/submit_area = 0x7f090213 com.example.medcuida.pro:id/submit_area = 0x7f090213
com.example.medcuida.pro:attr/layout_constraintHorizontal_bias = 0x7f0402a0 com.example.medcuida.pro:attr/layout_constraintHorizontal_bias = 0x7f0402a0
com.example.medcuida.pro:id/transition_current_scene = 0x7f090249 com.example.medcuida.pro:id/transition_current_scene = 0x7f09024a
com.example.medcuida.pro:dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f07016b com.example.medcuida.pro:dimen/m3_comp_radio_button_selected_pressed_state_layer_opacity = 0x7f07016b
com.example.medcuida.pro:attr/mock_label = 0x7f04032c com.example.medcuida.pro:attr/mock_label = 0x7f04032c
com.example.medcuida.pro:dimen/m3_comp_navigation_drawer_icon_size = 0x7f070146 com.example.medcuida.pro:dimen/m3_comp_navigation_drawer_icon_size = 0x7f070146
@@ -4955,7 +4956,7 @@ com.example.medcuida.pro:attr/measureWithLargestChild = 0x7f040320
com.example.medcuida.pro:dimen/m3_simple_item_color_selected_alpha = 0x7f0701e6 com.example.medcuida.pro:dimen/m3_simple_item_color_selected_alpha = 0x7f0701e6
com.example.medcuida.pro:dimen/m3_comp_filled_card_pressed_state_layer_opacity = 0x7f07012d com.example.medcuida.pro:dimen/m3_comp_filled_card_pressed_state_layer_opacity = 0x7f07012d
com.example.medcuida.pro:style/Widget.AppCompat.Spinner.Underlined = 0x7f14032d com.example.medcuida.pro:style/Widget.AppCompat.Spinner.Underlined = 0x7f14032d
com.example.medcuida.pro:id/tv_especialidade = 0x7f090252 com.example.medcuida.pro:id/tv_especialidade = 0x7f090253
com.example.medcuida.pro:attr/motionEasingLinear = 0x7f040348 com.example.medcuida.pro:attr/motionEasingLinear = 0x7f040348
com.example.medcuida.pro:attr/popupTheme = 0x7f04039d com.example.medcuida.pro:attr/popupTheme = 0x7f04039d
com.example.medcuida.pro:attr/expandedTitleMarginEnd = 0x7f0401cc com.example.medcuida.pro:attr/expandedTitleMarginEnd = 0x7f0401cc
@@ -5177,7 +5178,7 @@ com.example.medcuida.pro:dimen/m3_sys_elevation_level1 = 0x7f0701ee
com.example.medcuida.pro:id/open_search_view_toolbar_container = 0x7f0901a2 com.example.medcuida.pro:id/open_search_view_toolbar_container = 0x7f0901a2
com.example.medcuida.pro:anim/abc_fade_out = 0x7f010001 com.example.medcuida.pro:anim/abc_fade_out = 0x7f010001
com.example.medcuida.pro:attr/state_above_anchor = 0x7f040412 com.example.medcuida.pro:attr/state_above_anchor = 0x7f040412
com.example.medcuida.pro:id/visible_removing_fragment_view_tag = 0x7f090270 com.example.medcuida.pro:id/visible_removing_fragment_view_tag = 0x7f090271
com.example.medcuida.pro:attr/chipSpacing = 0x7f0400cf com.example.medcuida.pro:attr/chipSpacing = 0x7f0400cf
com.example.medcuida.pro:attr/dialogPreferredPadding = 0x7f040186 com.example.medcuida.pro:attr/dialogPreferredPadding = 0x7f040186
com.example.medcuida.pro:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f140410 com.example.medcuida.pro:style/Widget.MaterialComponents.CircularProgressIndicator.Medium = 0x7f140410
@@ -5211,7 +5212,7 @@ com.example.medcuida.pro:attr/checkedTextViewStyle = 0x7f0400c3
com.example.medcuida.pro:attr/cornerFamilyBottomLeft = 0x7f040156 com.example.medcuida.pro:attr/cornerFamilyBottomLeft = 0x7f040156
com.example.medcuida.pro:attr/SharedValueId = 0x7f040001 com.example.medcuida.pro:attr/SharedValueId = 0x7f040001
com.example.medcuida.pro:attr/graph = 0x7f040220 com.example.medcuida.pro:attr/graph = 0x7f040220
com.example.medcuida.pro:id/tv_email_paciente = 0x7f090251 com.example.medcuida.pro:id/tv_email_paciente = 0x7f090252
com.example.medcuida.pro:attr/gapBetweenBars = 0x7f04021d com.example.medcuida.pro:attr/gapBetweenBars = 0x7f04021d
com.example.medcuida.pro:dimen/m3_appbar_size_compact = 0x7f0700ac com.example.medcuida.pro:dimen/m3_appbar_size_compact = 0x7f0700ac
com.example.medcuida.pro:id/radio = 0x7f0901b8 com.example.medcuida.pro:id/radio = 0x7f0901b8
@@ -5275,7 +5276,7 @@ com.example.medcuida.pro:style/Base.V21.Theme.AppCompat.Light.Dialog = 0x7f1400a
com.example.medcuida.pro:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f070253 com.example.medcuida.pro:dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f070253
com.example.medcuida.pro:attr/colorSurfaceContainerLowest = 0x7f04012f com.example.medcuida.pro:attr/colorSurfaceContainerLowest = 0x7f04012f
com.example.medcuida.pro:attr/checkedChip = 0x7f0400ba com.example.medcuida.pro:attr/checkedChip = 0x7f0400ba
com.example.medcuida.pro:id/unlabeled = 0x7f090261 com.example.medcuida.pro:id/unlabeled = 0x7f090262
com.example.medcuida.pro:attr/constraint_referenced_tags = 0x7f04013f com.example.medcuida.pro:attr/constraint_referenced_tags = 0x7f04013f
com.example.medcuida.pro:style/Widget.Material3.Button.TextButton.Dialog.Flush = 0x7f140360 com.example.medcuida.pro:style/Widget.Material3.Button.TextButton.Dialog.Flush = 0x7f140360
com.example.medcuida.pro:integer/mtrl_switch_thumb_post_morphing_duration = 0x7f0a0039 com.example.medcuida.pro:integer/mtrl_switch_thumb_post_morphing_duration = 0x7f0a0039
@@ -5412,7 +5413,7 @@ com.example.medcuida.pro:id/search_close_btn = 0x7f0901e1
com.example.medcuida.pro:attr/flow_horizontalAlign = 0x7f0401fd com.example.medcuida.pro:attr/flow_horizontalAlign = 0x7f0401fd
com.example.medcuida.pro:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f0702a1 com.example.medcuida.pro:dimen/mtrl_exposed_dropdown_menu_popup_vertical_offset = 0x7f0702a1
com.example.medcuida.pro:macro/m3_comp_switch_disabled_unselected_track_outline_color = 0x7f0d0120 com.example.medcuida.pro:macro/m3_comp_switch_disabled_unselected_track_outline_color = 0x7f0d0120
com.example.medcuida.pro:id/text_pill_name = 0x7f090236 com.example.medcuida.pro:id/text_pill_name = 0x7f090237
com.example.medcuida.pro:attr/clockHandColor = 0x7f0400e4 com.example.medcuida.pro:attr/clockHandColor = 0x7f0400e4
com.example.medcuida.pro:macro/m3_comp_time_input_time_input_field_container_shape = 0x7f0d0148 com.example.medcuida.pro:macro/m3_comp_time_input_time_input_field_container_shape = 0x7f0d0148
com.example.medcuida.pro:attr/clockFaceBackgroundColor = 0x7f0400e3 com.example.medcuida.pro:attr/clockFaceBackgroundColor = 0x7f0400e3
@@ -5640,7 +5641,7 @@ com.example.medcuida.pro:attr/boxBackgroundMode = 0x7f040084
com.example.medcuida.pro:color/m3_ref_palette_dynamic_secondary80 = 0x7f0600f6 com.example.medcuida.pro:color/m3_ref_palette_dynamic_secondary80 = 0x7f0600f6
com.example.medcuida.pro:drawable/notification_bg_normal = 0x7f08010a com.example.medcuida.pro:drawable/notification_bg_normal = 0x7f08010a
com.example.medcuida.pro:attr/splitMinWidth = 0x7f0403ff com.example.medcuida.pro:attr/splitMinWidth = 0x7f0403ff
com.example.medcuida.pro:id/withinBounds = 0x7f090275 com.example.medcuida.pro:id/withinBounds = 0x7f090276
com.example.medcuida.pro:attr/cardBackgroundColor = 0x7f0400a0 com.example.medcuida.pro:attr/cardBackgroundColor = 0x7f0400a0
com.example.medcuida.pro:attr/colorOutlineVariant = 0x7f04011a com.example.medcuida.pro:attr/colorOutlineVariant = 0x7f04011a
com.example.medcuida.pro:dimen/m3_comp_outlined_card_icon_size = 0x7f070157 com.example.medcuida.pro:dimen/m3_comp_outlined_card_icon_size = 0x7f070157
@@ -5869,7 +5870,7 @@ com.example.medcuida.pro:attr/dividerInsetEnd = 0x7f04018c
com.example.medcuida.pro:dimen/design_navigation_item_icon_padding = 0x7f07007b com.example.medcuida.pro:dimen/design_navigation_item_icon_padding = 0x7f07007b
com.example.medcuida.pro:attr/textAppearanceSmallPopupMenu = 0x7f040475 com.example.medcuida.pro:attr/textAppearanceSmallPopupMenu = 0x7f040475
com.example.medcuida.pro:attr/isLightTheme = 0x7f040253 com.example.medcuida.pro:attr/isLightTheme = 0x7f040253
com.example.medcuida.pro:id/view_offset_helper = 0x7f090267 com.example.medcuida.pro:id/view_offset_helper = 0x7f090268
com.example.medcuida.pro:attr/activeIndicatorLabelPadding = 0x7f040027 com.example.medcuida.pro:attr/activeIndicatorLabelPadding = 0x7f040027
com.example.medcuida.pro:attr/simpleItemSelectedRippleColor = 0x7f0403ef com.example.medcuida.pro:attr/simpleItemSelectedRippleColor = 0x7f0403ef
com.example.medcuida.pro:color/material_harmonized_color_on_error_container = 0x7f06027c com.example.medcuida.pro:color/material_harmonized_color_on_error_container = 0x7f06027c
@@ -5976,7 +5977,7 @@ com.example.medcuida.pro:animator/design_fab_hide_motion_spec = 0x7f020001
com.example.medcuida.pro:color/material_dynamic_color_light_error = 0x7f06022d com.example.medcuida.pro:color/material_dynamic_color_light_error = 0x7f06022d
com.example.medcuida.pro:id/legacy = 0x7f09012a com.example.medcuida.pro:id/legacy = 0x7f09012a
com.example.medcuida.pro:color/mtrl_choice_chip_text_color = 0x7f0602d8 com.example.medcuida.pro:color/mtrl_choice_chip_text_color = 0x7f0602d8
com.example.medcuida.pro:id/useLogo = 0x7f090263 com.example.medcuida.pro:id/useLogo = 0x7f090264
com.example.medcuida.pro:color/m3_ref_palette_dynamic_neutral_variant22 = 0x7f0600ce com.example.medcuida.pro:color/m3_ref_palette_dynamic_neutral_variant22 = 0x7f0600ce
com.example.medcuida.pro:anim/linear_indeterminate_line1_tail_interpolator = 0x7f01001e com.example.medcuida.pro:anim/linear_indeterminate_line1_tail_interpolator = 0x7f01001e
com.example.medcuida.pro:attr/motionEasingStandardDecelerateInterpolator = 0x7f04034c com.example.medcuida.pro:attr/motionEasingStandardDecelerateInterpolator = 0x7f04034c

View File

@@ -3787,6 +3787,7 @@ id text_input_error_icon
id text_input_start_icon id text_input_start_icon
id text_paciente_email id text_paciente_email
id text_paciente_nome id text_paciente_nome
id text_paciente_utente
id text_pill_name id text_pill_name
id text_selected_date_full_hist id text_selected_date_full_hist
id textinput_counter id textinput_counter

View File

@@ -123,7 +123,7 @@ public class DetalhePacienteActivity extends AppCompatActivity {
infoMedicacao = sb.toString().trim(); infoMedicacao = sb.toString().trim();
tvMedicacao.setText(infoMedicacao); tvMedicacao.setText(infoMedicacao);
} else { } else {
infoMedicacao = "Nenhuma medicação ativa registada."; infoMedicacao = "Nenhum medicamento ativo registado.";
tvMedicacao.setText(infoMedicacao); tvMedicacao.setText(infoMedicacao);
} }
}); });

View File

@@ -362,6 +362,9 @@ public class MainActivity extends AppCompatActivity
if (p.getEmail() == null) if (p.getEmail() == null)
p.setEmail(doc.getString("email")); p.setEmail(doc.getString("email"));
Object utenteObj = doc.get("numero_utente");
p.setNumeroUtente(utenteObj != null ? String.valueOf(utenteObj) : null);
// Apenas adiciona se for realmente um paciente ou não tiver tipo definido // Apenas adiciona se for realmente um paciente ou não tiver tipo definido
String tipo = doc.getString("tipo"); String tipo = doc.getString("tipo");
if (tipo == null || tipo.equalsIgnoreCase("paciente")) { if (tipo == null || tipo.equalsIgnoreCase("paciente")) {

View File

@@ -5,6 +5,7 @@ public class Paciente {
private String nome; private String nome;
private String email; private String email;
private String fotoUrl; private String fotoUrl;
private String numeroUtente;
public Paciente() {} public Paciente() {}
@@ -16,4 +17,6 @@ public class Paciente {
public void setEmail(String email) { this.email = email; } public void setEmail(String email) { this.email = email; }
public String getFotoUrl() { return fotoUrl; } public String getFotoUrl() { return fotoUrl; }
public void setFotoUrl(String fotoUrl) { this.fotoUrl = fotoUrl; } public void setFotoUrl(String fotoUrl) { this.fotoUrl = fotoUrl; }
public String getNumeroUtente() { return numeroUtente; }
public void setNumeroUtente(String numeroUtente) { this.numeroUtente = numeroUtente; }
} }

View File

@@ -42,7 +42,8 @@ public class PacienteAdapter extends RecyclerView.Adapter<PacienteAdapter.Pacien
text = text.toLowerCase().trim(); text = text.toLowerCase().trim();
for (Paciente item : pacientesListFull) { for (Paciente item : pacientesListFull) {
if ((item.getNome() != null && item.getNome().toLowerCase().contains(text)) || if ((item.getNome() != null && item.getNome().toLowerCase().contains(text)) ||
(item.getEmail() != null && item.getEmail().toLowerCase().contains(text))) { (item.getEmail() != null && item.getEmail().toLowerCase().contains(text)) ||
(item.getNumeroUtente() != null && item.getNumeroUtente().toLowerCase().contains(text))) {
pacientesList.add(item); pacientesList.add(item);
} }
} }
@@ -70,17 +71,26 @@ public class PacienteAdapter extends RecyclerView.Adapter<PacienteAdapter.Pacien
} }
static class PacienteViewHolder extends RecyclerView.ViewHolder { static class PacienteViewHolder extends RecyclerView.ViewHolder {
TextView textNome, textEmail; TextView textNome, textEmail, textUtente;
public PacienteViewHolder(@NonNull View itemView) { public PacienteViewHolder(@NonNull View itemView) {
super(itemView); super(itemView);
textNome = itemView.findViewById(R.id.text_paciente_nome); textNome = itemView.findViewById(R.id.text_paciente_nome);
textEmail = itemView.findViewById(R.id.text_paciente_email); textEmail = itemView.findViewById(R.id.text_paciente_email);
textUtente = itemView.findViewById(R.id.text_paciente_utente);
} }
public void bind(final Paciente paciente, final OnPacienteClickListener listener) { public void bind(final Paciente paciente, final OnPacienteClickListener listener) {
textNome.setText(paciente.getNome() != null ? paciente.getNome() : "Desconhecido"); textNome.setText(paciente.getNome() != null ? paciente.getNome() : "Desconhecido");
textEmail.setText(paciente.getEmail() != null ? paciente.getEmail() : "N/A"); textEmail.setText(paciente.getEmail() != null ? paciente.getEmail() : "N/A");
if (textUtente != null) {
if (paciente.getNumeroUtente() != null && !paciente.getNumeroUtente().isEmpty()) {
textUtente.setText("Nº Utente: " + paciente.getNumeroUtente());
textUtente.setVisibility(View.VISIBLE);
} else {
textUtente.setVisibility(View.GONE);
}
}
itemView.setOnClickListener(v -> { itemView.setOnClickListener(v -> {
if (listener != null) { if (listener != null) {

View File

@@ -11,6 +11,13 @@ public class ForgotPasswordActivity extends AppCompatActivity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
// 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());
// Carregar Tema (Modo Escuro) // Carregar Tema (Modo Escuro)
boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false); boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false);
if (isDarkMode) { if (isDarkMode) {

View File

@@ -33,6 +33,13 @@ public class LoginActivity extends AppCompatActivity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
// 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());
// Carregar Tema (Modo Escuro) // Carregar Tema (Modo Escuro)
boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false); boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false);
int targetMode = isDarkMode ? androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_YES : androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_NO; int targetMode = isDarkMode ? androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_YES : androidx.appcompat.app.AppCompatDelegate.MODE_NIGHT_NO;

View File

@@ -34,6 +34,13 @@ public class RegisterActivity extends AppCompatActivity {
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
// 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());
// Carregar Tema (Modo Escuro) // Carregar Tema (Modo Escuro)
boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false); boolean isDarkMode = getSharedPreferences("Settings", MODE_PRIVATE).getBoolean("dark_mode", false);
if (isDarkMode) { if (isDarkMode) {

View File

@@ -105,7 +105,7 @@
</LinearLayout> </LinearLayout>
</com.google.android.material.card.MaterialCardView> </com.google.android.material.card.MaterialCardView>
<!-- Card Medicação --> <!-- Card Medicamentos -->
<com.google.android.material.card.MaterialCardView <com.google.android.material.card.MaterialCardView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@@ -125,7 +125,7 @@
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Medicação Ativa" android:text="Medicamentos Ativos"
android:textStyle="bold" android:textStyle="bold"
android:textSize="22sp" android:textSize="22sp"
android:fontFamily="sans-serif-black" android:fontFamily="sans-serif-black"
@@ -136,7 +136,7 @@
android:id="@+id/tv_medicacao_paciente" android:id="@+id/tv_medicacao_paciente"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="A carregar medicação..." android:text="A carregar medicamentos..."
android:textSize="16sp" android:textSize="16sp"
android:textColor="@color/text_secondary" android:textColor="@color/text_secondary"
android:lineSpacingExtra="4dp"/> android:lineSpacingExtra="4dp"/>

View File

@@ -52,6 +52,15 @@
android:textSize="14sp" android:textSize="14sp"
android:layout_marginTop="2dp" android:layout_marginTop="2dp"
android:textColor="@color/text_secondary" /> android:textColor="@color/text_secondary" />
<TextView
android:id="@+id/text_paciente_utente"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nº Utente: 123456789"
android:textSize="14sp"
android:layout_marginTop="2dp"
android:textColor="@color/text_secondary" />
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>

View File

@@ -2,14 +2,14 @@
<string name="app_name">Cuida</string> <string name="app_name">Cuida</string>
<string name="title_home">Início</string> <string name="title_home">Início</string>
<string name="title_appointments">Consultas</string> <string name="title_appointments">Consultas</string>
<string name="title_medication">Medicação</string> <string name="title_medication">Medicamentos</string>
<string name="title_sns24">SNS 24</string> <string name="title_sns24">SNS 24</string>
<string name="title_profile">Perfil</string> <string name="title_profile">Perfil</string>
<!-- Auth --> <!-- Auth -->
<string name="login_title">Iniciar Sessão</string> <string name="login_title">Iniciar Sessão</string>
<string name="register_title">Criar Conta</string> <string name="register_title">Criar Conta</string>
<string name="forgot_password">Esqueci-me da Palavra-passe</string> <string name="forgot_password">Esqueci-me da minha palavra-passe</string>
<string name="email_hint">Email</string> <string name="email_hint">Email</string>
<string name="password_hint">Palavra-passe</string> <string name="password_hint">Palavra-passe</string>
<string name="name_hint">Nome Completo</string> <string name="name_hint">Nome Completo</string>