quero agora marcar as consultas e medicamentos para os apcientes

This commit is contained in:
2026-05-05 17:13:49 +01:00
parent 026770f7da
commit 1a5c28934f
53 changed files with 2509 additions and 2343 deletions

View File

@@ -4,8 +4,9 @@ package com.example.medcuida.pro.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AutoCompleteTextView;
import android.widget.ImageButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.ScrollView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
@@ -33,9 +34,6 @@ public final class ActivityEditarPerfilBinding implements ViewBinding {
@NonNull
public final TextInputEditText editEmail;
@NonNull
public final AutoCompleteTextView editGender;
@NonNull
public final TextInputEditText editHorarioFim;
@@ -54,23 +52,40 @@ public final class ActivityEditarPerfilBinding implements ViewBinding {
@NonNull
public final ShapeableImageView imgPerfilEdit;
@NonNull
public final RadioButton rbFeminino;
@NonNull
public final RadioButton rbMasculino;
@NonNull
public final RadioButton rbOutro;
@NonNull
public final RadioGroup rgGender;
private ActivityEditarPerfilBinding(@NonNull ScrollView rootView,
@NonNull MaterialButton btnGuardarAlteracoes, @NonNull ImageButton btnVoltar,
@NonNull TextInputEditText editEmail, @NonNull AutoCompleteTextView editGender,
@NonNull TextInputEditText editHorarioFim, @NonNull TextInputEditText editHorarioInicio,
@NonNull TextInputEditText editName, @NonNull TextInputEditText editSpecialty,
@NonNull FloatingActionButton fabEditPhoto, @NonNull ShapeableImageView imgPerfilEdit) {
@NonNull TextInputEditText editEmail, @NonNull TextInputEditText editHorarioFim,
@NonNull TextInputEditText editHorarioInicio, @NonNull TextInputEditText editName,
@NonNull TextInputEditText editSpecialty, @NonNull FloatingActionButton fabEditPhoto,
@NonNull ShapeableImageView imgPerfilEdit, @NonNull RadioButton rbFeminino,
@NonNull RadioButton rbMasculino, @NonNull RadioButton rbOutro,
@NonNull RadioGroup rgGender) {
this.rootView = rootView;
this.btnGuardarAlteracoes = btnGuardarAlteracoes;
this.btnVoltar = btnVoltar;
this.editEmail = editEmail;
this.editGender = editGender;
this.editHorarioFim = editHorarioFim;
this.editHorarioInicio = editHorarioInicio;
this.editName = editName;
this.editSpecialty = editSpecialty;
this.fabEditPhoto = fabEditPhoto;
this.imgPerfilEdit = imgPerfilEdit;
this.rbFeminino = rbFeminino;
this.rbMasculino = rbMasculino;
this.rbOutro = rbOutro;
this.rgGender = rgGender;
}
@Override
@@ -118,12 +133,6 @@ public final class ActivityEditarPerfilBinding implements ViewBinding {
break missingId;
}
id = R.id.edit_gender;
AutoCompleteTextView editGender = ViewBindings.findChildViewById(rootView, id);
if (editGender == null) {
break missingId;
}
id = R.id.edit_horario_fim;
TextInputEditText editHorarioFim = ViewBindings.findChildViewById(rootView, id);
if (editHorarioFim == null) {
@@ -160,9 +169,33 @@ public final class ActivityEditarPerfilBinding implements ViewBinding {
break missingId;
}
id = R.id.rb_feminino;
RadioButton rbFeminino = ViewBindings.findChildViewById(rootView, id);
if (rbFeminino == null) {
break missingId;
}
id = R.id.rb_masculino;
RadioButton rbMasculino = ViewBindings.findChildViewById(rootView, id);
if (rbMasculino == null) {
break missingId;
}
id = R.id.rb_outro;
RadioButton rbOutro = ViewBindings.findChildViewById(rootView, id);
if (rbOutro == null) {
break missingId;
}
id = R.id.rg_gender;
RadioGroup rgGender = ViewBindings.findChildViewById(rootView, id);
if (rgGender == null) {
break missingId;
}
return new ActivityEditarPerfilBinding((ScrollView) rootView, btnGuardarAlteracoes, btnVoltar,
editEmail, editGender, editHorarioFim, editHorarioInicio, editName, editSpecialty,
fabEditPhoto, imgPerfilEdit);
editEmail, editHorarioFim, editHorarioInicio, editName, editSpecialty, fabEditPhoto,
imgPerfilEdit, rbFeminino, rbMasculino, rbOutro, rgGender);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_detalhe_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_detalhe_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_detalhe_paciente_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="195" endOffset="51"/></Target><Target id="@+id/btn_sair_detalhe" view="ImageButton"><Expressions/><location startLine="11" startOffset="4" endLine="22" endOffset="33"/></Target><Target id="@+id/tv_nome_paciente" view="TextView"><Expressions/><location startLine="62" startOffset="20" endLine="68" endOffset="58"/></Target><Target id="@+id/tv_idade_paciente" view="TextView"><Expressions/><location startLine="70" startOffset="20" endLine="76" endOffset="58"/></Target><Target id="@+id/tv_numero_utente" view="TextView"><Expressions/><location startLine="78" startOffset="20" endLine="84" endOffset="58"/></Target><Target id="@+id/tv_sexo_paciente" view="TextView"><Expressions/><location startLine="86" startOffset="20" endLine="92" endOffset="58"/></Target><Target id="@+id/tv_email_paciente" view="TextView"><Expressions/><location startLine="94" startOffset="20" endLine="99" endOffset="48"/></Target><Target id="@+id/tv_medicacao_paciente" view="TextView"><Expressions/><location startLine="130" startOffset="20" endLine="137" endOffset="55"/></Target><Target id="@+id/btn_adicionar_medicamento" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="167" startOffset="20" endLine="175" endOffset="72"/></Target><Target id="@+id/btn_agendar_consulta" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="177" startOffset="20" endLine="186" endOffset="72"/></Target></Targets></Layout>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_detalhe_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_detalhe_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_detalhe_paciente_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="201" endOffset="51"/></Target><Target id="@+id/btn_sair_detalhe" view="ImageButton"><Expressions/><location startLine="11" startOffset="4" endLine="22" endOffset="33"/></Target><Target id="@+id/tv_nome_paciente" view="TextView"><Expressions/><location startLine="65" startOffset="20" endLine="71" endOffset="58"/></Target><Target id="@+id/tv_idade_paciente" view="TextView"><Expressions/><location startLine="73" startOffset="20" endLine="79" endOffset="58"/></Target><Target id="@+id/tv_numero_utente" view="TextView"><Expressions/><location startLine="81" startOffset="20" endLine="87" endOffset="58"/></Target><Target id="@+id/tv_sexo_paciente" view="TextView"><Expressions/><location startLine="89" startOffset="20" endLine="95" endOffset="58"/></Target><Target id="@+id/tv_email_paciente" view="TextView"><Expressions/><location startLine="97" startOffset="20" endLine="102" endOffset="48"/></Target><Target id="@+id/tv_medicacao_paciente" view="TextView"><Expressions/><location startLine="134" startOffset="20" endLine="141" endOffset="55"/></Target><Target id="@+id/btn_adicionar_medicamento" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="172" startOffset="20" endLine="181" endOffset="72"/></Target><Target id="@+id/btn_agendar_consulta" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="183" startOffset="20" endLine="192" endOffset="72"/></Target></Targets></Layout>

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_editar_perfil" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_editar_perfil.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_editar_perfil_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="174" endOffset="12"/></Target><Target id="@+id/btn_voltar" view="ImageButton"><Expressions/><location startLine="14" startOffset="8" endLine="20" endOffset="42"/></Target><Target id="@+id/img_perfil_edit" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="38" startOffset="12" endLine="45" endOffset="68"/></Target><Target id="@+id/fab_edit_photo" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="47" startOffset="12" endLine="57" endOffset="57"/></Target><Target id="@+id/edit_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="66" startOffset="12" endLine="73" endOffset="38"/></Target><Target id="@+id/edit_specialty" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="82" startOffset="12" endLine="89" endOffset="38"/></Target><Target id="@+id/edit_gender" view="AutoCompleteTextView"><Expressions/><location startLine="99" startOffset="12" endLine="103" endOffset="42"/></Target><Target id="@+id/edit_horario_inicio" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="119" startOffset="16" endLine="126" endOffset="46"/></Target><Target id="@+id/edit_horario_fim" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="136" startOffset="16" endLine="143" endOffset="46"/></Target><Target id="@+id/edit_email" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="153" startOffset="12" endLine="159" endOffset="54"/></Target><Target id="@+id/btn_guardar_alteracoes" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="162" startOffset="8" endLine="171" endOffset="45"/></Target></Targets></Layout>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_editar_perfil" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_editar_perfil.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_editar_perfil_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="202" endOffset="12"/></Target><Target id="@+id/btn_voltar" view="ImageButton"><Expressions/><location startLine="16" startOffset="8" endLine="22" endOffset="42"/></Target><Target id="@+id/img_perfil_edit" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="68"/></Target><Target id="@+id/fab_edit_photo" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="50" startOffset="12" endLine="60" endOffset="57"/></Target><Target id="@+id/edit_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="69" startOffset="12" endLine="76" endOffset="38"/></Target><Target id="@+id/edit_specialty" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="85" startOffset="12" endLine="92" endOffset="38"/></Target><Target id="@+id/rg_gender" view="RadioGroup"><Expressions/><location startLine="103" startOffset="8" endLine="132" endOffset="20"/></Target><Target id="@+id/rb_masculino" view="RadioButton"><Expressions/><location startLine="110" startOffset="12" endLine="116" endOffset="48"/></Target><Target id="@+id/rb_feminino" view="RadioButton"><Expressions/><location startLine="118" startOffset="12" endLine="124" endOffset="48"/></Target><Target id="@+id/rb_outro" view="RadioButton"><Expressions/><location startLine="126" startOffset="12" endLine="131" endOffset="37"/></Target><Target id="@+id/edit_horario_inicio" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="147" startOffset="16" endLine="154" endOffset="46"/></Target><Target id="@+id/edit_horario_fim" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="164" startOffset="16" endLine="171" endOffset="46"/></Target><Target id="@+id/edit_email" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="181" startOffset="12" endLine="187" endOffset="54"/></Target><Target id="@+id/btn_guardar_alteracoes" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="190" startOffset="8" endLine="199" endOffset="45"/></Target></Targets></Layout>

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_detalhe_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_detalhe_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_detalhe_paciente_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="195" endOffset="51"/></Target><Target id="@+id/btn_sair_detalhe" view="ImageButton"><Expressions/><location startLine="11" startOffset="4" endLine="22" endOffset="33"/></Target><Target id="@+id/tv_nome_paciente" view="TextView"><Expressions/><location startLine="62" startOffset="20" endLine="68" endOffset="58"/></Target><Target id="@+id/tv_idade_paciente" view="TextView"><Expressions/><location startLine="70" startOffset="20" endLine="76" endOffset="58"/></Target><Target id="@+id/tv_numero_utente" view="TextView"><Expressions/><location startLine="78" startOffset="20" endLine="84" endOffset="58"/></Target><Target id="@+id/tv_sexo_paciente" view="TextView"><Expressions/><location startLine="86" startOffset="20" endLine="92" endOffset="58"/></Target><Target id="@+id/tv_email_paciente" view="TextView"><Expressions/><location startLine="94" startOffset="20" endLine="99" endOffset="48"/></Target><Target id="@+id/tv_medicacao_paciente" view="TextView"><Expressions/><location startLine="130" startOffset="20" endLine="137" endOffset="55"/></Target><Target id="@+id/btn_adicionar_medicamento" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="167" startOffset="20" endLine="175" endOffset="72"/></Target><Target id="@+id/btn_agendar_consulta" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="177" startOffset="20" endLine="186" endOffset="72"/></Target></Targets></Layout>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_detalhe_paciente" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_detalhe_paciente.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_detalhe_paciente_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="201" endOffset="51"/></Target><Target id="@+id/btn_sair_detalhe" view="ImageButton"><Expressions/><location startLine="11" startOffset="4" endLine="22" endOffset="33"/></Target><Target id="@+id/tv_nome_paciente" view="TextView"><Expressions/><location startLine="65" startOffset="20" endLine="71" endOffset="58"/></Target><Target id="@+id/tv_idade_paciente" view="TextView"><Expressions/><location startLine="73" startOffset="20" endLine="79" endOffset="58"/></Target><Target id="@+id/tv_numero_utente" view="TextView"><Expressions/><location startLine="81" startOffset="20" endLine="87" endOffset="58"/></Target><Target id="@+id/tv_sexo_paciente" view="TextView"><Expressions/><location startLine="89" startOffset="20" endLine="95" endOffset="58"/></Target><Target id="@+id/tv_email_paciente" view="TextView"><Expressions/><location startLine="97" startOffset="20" endLine="102" endOffset="48"/></Target><Target id="@+id/tv_medicacao_paciente" view="TextView"><Expressions/><location startLine="134" startOffset="20" endLine="141" endOffset="55"/></Target><Target id="@+id/btn_adicionar_medicamento" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="172" startOffset="20" endLine="181" endOffset="72"/></Target><Target id="@+id/btn_agendar_consulta" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="183" startOffset="20" endLine="192" endOffset="72"/></Target></Targets></Layout>

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_editar_perfil" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_editar_perfil.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_editar_perfil_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="174" endOffset="12"/></Target><Target id="@+id/btn_voltar" view="ImageButton"><Expressions/><location startLine="14" startOffset="8" endLine="20" endOffset="42"/></Target><Target id="@+id/img_perfil_edit" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="38" startOffset="12" endLine="45" endOffset="68"/></Target><Target id="@+id/fab_edit_photo" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="47" startOffset="12" endLine="57" endOffset="57"/></Target><Target id="@+id/edit_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="66" startOffset="12" endLine="73" endOffset="38"/></Target><Target id="@+id/edit_specialty" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="82" startOffset="12" endLine="89" endOffset="38"/></Target><Target id="@+id/edit_gender" view="AutoCompleteTextView"><Expressions/><location startLine="99" startOffset="12" endLine="103" endOffset="42"/></Target><Target id="@+id/edit_horario_inicio" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="119" startOffset="16" endLine="126" endOffset="46"/></Target><Target id="@+id/edit_horario_fim" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="136" startOffset="16" endLine="143" endOffset="46"/></Target><Target id="@+id/edit_email" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="153" startOffset="12" endLine="159" endOffset="54"/></Target><Target id="@+id/btn_guardar_alteracoes" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="162" startOffset="8" endLine="171" endOffset="45"/></Target></Targets></Layout>
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_editar_perfil" modulePackage="com.example.medcuida.pro" filePath="app/src/main/res/layout/activity_editar_perfil.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_editar_perfil_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="202" endOffset="12"/></Target><Target id="@+id/btn_voltar" view="ImageButton"><Expressions/><location startLine="16" startOffset="8" endLine="22" endOffset="42"/></Target><Target id="@+id/img_perfil_edit" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="68"/></Target><Target id="@+id/fab_edit_photo" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="50" startOffset="12" endLine="60" endOffset="57"/></Target><Target id="@+id/edit_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="69" startOffset="12" endLine="76" endOffset="38"/></Target><Target id="@+id/edit_specialty" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="85" startOffset="12" endLine="92" endOffset="38"/></Target><Target id="@+id/rg_gender" view="RadioGroup"><Expressions/><location startLine="103" startOffset="8" endLine="132" endOffset="20"/></Target><Target id="@+id/rb_masculino" view="RadioButton"><Expressions/><location startLine="110" startOffset="12" endLine="116" endOffset="48"/></Target><Target id="@+id/rb_feminino" view="RadioButton"><Expressions/><location startLine="118" startOffset="12" endLine="124" endOffset="48"/></Target><Target id="@+id/rb_outro" view="RadioButton"><Expressions/><location startLine="126" startOffset="12" endLine="131" endOffset="37"/></Target><Target id="@+id/edit_horario_inicio" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="147" startOffset="16" endLine="154" endOffset="46"/></Target><Target id="@+id/edit_horario_fim" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="164" startOffset="16" endLine="171" endOffset="46"/></Target><Target id="@+id/edit_email" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="181" startOffset="12" endLine="187" endOffset="54"/></Target><Target id="@+id/btn_guardar_alteracoes" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="190" startOffset="8" endLine="199" endOffset="45"/></Target></Targets></Layout>

View File

@@ -1,4 +1,4 @@
#Thu Apr 30 10:35:19 WEST 2026
#Tue May 05 16:07:36 WEST 2026
com.example.medcuida.pro.app-main-56\:/drawable-v26/ic_launcher_final.xml=/Users/230405/StudioProjects/cuidamais_med/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat
com.example.medcuida.pro.app-main-56\:/drawable/bg_gradient_header.xml=/Users/230405/StudioProjects/cuidamais_med/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_gradient_header.xml.flat
com.example.medcuida.pro.app-main-56\:/drawable/btn_outline_error.xml=/Users/230405/StudioProjects/cuidamais_med/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat

View File

@@ -1,4 +1,4 @@
#Thu Apr 30 10:35:19 WEST 2026
#Tue May 05 16:07:36 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/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

View File

@@ -1,4 +1,4 @@
#Thu Apr 30 10:38:47 WEST 2026
#Tue May 05 16:07:37 WEST 2026
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.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

@@ -70,7 +70,6 @@ id chip_group_times
id container
id edit_consulta_motivo
id edit_email
id edit_gender
id edit_horario_fim
id edit_horario_inicio
id edit_med_name
@@ -105,8 +104,11 @@ id navigation_schedule_appointment
id navigation_sns24
id new_password
id password_edit_text
id rb_feminino
id rb_inhalatory
id rb_masculino
id rb_oral
id rb_outro
id rb_topical
id recycler_aceites
id recycler_agenda
@@ -117,6 +119,7 @@ id register_button
id register_link
id reset_button
id rg_administration
id rg_gender
id search_layout_pacientes
id specialty_edit_text
id text_aceites_empty

View File

@@ -1,8 +1,4 @@
[
{
"merged": "com.example.medcuida.pro.app-mergeDebugResources-54:/layout/item_comprimido_search.xml",
"source": "com.example.medcuida.pro.app-main-57:/layout/item_comprimido_search.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-mergeDebugResources-54:/layout/dialog_add_medication.xml",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/dialog_add_medication.xml"
@@ -23,6 +19,10 @@
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-mergeDebugResources-54:/layout/item_consulta_medico.xml",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/item_consulta_medico.xml"
},
{
"merged": "com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_main.xml",
"source": "com.example.medcuida.pro.app-main-57:/layout/activity_main.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-mergeDebugResources-54:/layout/activity_register.xml",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/activity_register.xml"

View File

@@ -3,6 +3,14 @@
"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"
},
{
"merged": "com.example.medcuida.pro.app-debug-55:/layout_activity_main.xml.flat",
"source": "com.example.medcuida.pro.app-main-57:/layout/activity_main.xml"
},
{
"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"
},
{
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_bg_gradient_header.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/bg_gradient_header.xml"
@@ -11,10 +19,6 @@
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/drawable_ic_nav_inicio.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/drawable/ic_nav_inicio.xml"
},
{
"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"
},
{
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/layout_activity_main.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/activity_main.xml"
@@ -91,10 +95,6 @@
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/layout_activity_forgot_password.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/layout/activity_forgot_password.xml"
},
{
"merged": "com.example.medcuida.pro.app-debug-55:/layout_item_comprimido_search.xml.flat",
"source": "com.example.medcuida.pro.app-main-57:/layout/item_comprimido_search.xml"
},
{
"merged": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-debug-55:/xml_data_extraction_rules.xml.flat",
"source": "/Users/230405/.gradle/daemon/9.4.1/com.example.medcuida.pro.app-main-57:/xml/data_extraction_rules.xml"

View File

@@ -25,6 +25,8 @@
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:clipToPadding="false"
android:paddingBottom="80dp"
app:layout_constraintTop_toBottomOf="@id/btn_sair_detalhe"
app:layout_constraintBottom_toBottomOf="parent">
@@ -56,7 +58,8 @@
android:layout_height="wrap_content"
android:text="Informação Pessoal"
android:textStyle="bold"
android:textSize="20sp"
android:textSize="22sp"
android:fontFamily="sans-serif-black"
android:textColor="@color/text_primary"
android:layout_marginBottom="16dp"/>
@@ -124,7 +127,8 @@
android:layout_height="wrap_content"
android:text="Medicação Ativa"
android:textStyle="bold"
android:textSize="20sp"
android:textSize="22sp"
android:fontFamily="sans-serif-black"
android:textColor="@color/text_primary"
android:layout_marginBottom="16dp"/>
@@ -161,7 +165,8 @@
android:layout_height="wrap_content"
android:text="Ações Clínicas"
android:textStyle="bold"
android:textSize="20sp"
android:textSize="22sp"
android:fontFamily="sans-serif-black"
android:textColor="@color/text_primary"
android:layout_marginBottom="16dp"/>
@@ -170,9 +175,10 @@
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="Adicionar Medicamento"
app:cornerRadius="12dp"
android:layout_marginBottom="12dp"
app:cornerRadius="30dp"
android:layout_marginBottom="16dp"
app:icon="@drawable/ic_plus"
app:backgroundTint="?attr/colorPrimary"
style="@style/Widget.MaterialComponents.Button"/>
<com.google.android.material.button.MaterialButton
@@ -180,10 +186,10 @@
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="Marcar Consulta"
app:cornerRadius="12dp"
app:cornerRadius="30dp"
android:layout_marginBottom="24dp"
app:icon="@drawable/ic_calendar"
android:backgroundTint="#4CAF50"
app:backgroundTint="#4CAF50"
style="@style/Widget.MaterialComponents.Button"/>
</LinearLayout>

View File

@@ -4,13 +4,15 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:background="#FAFAFA">
android:background="@color/background_color">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="24dp">
android:paddingTop="32dp"
android:paddingBottom="40dp"
android:paddingHorizontal="24dp">
<ImageButton
android:id="@+id/btn_voltar"
@@ -24,11 +26,12 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Editar Dados Pessoais"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="#000000"
android:layout_marginTop="16dp"
android:layout_marginBottom="24dp"/>
android:textAlignment="center"
android:textSize="28sp"
android:fontFamily="sans-serif-black"
android:textColor="?attr/colorPrimary"
android:layout_marginTop="24dp"
android:layout_marginBottom="32dp"/>
<RelativeLayout
android:layout_width="wrap_content"
@@ -90,19 +93,44 @@
android:maxLines="1" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sexo"
android:textColor="@color/text_primary"
android:layout_marginBottom="8dp"
android:textStyle="bold"/>
<RadioGroup
android:id="@+id/rg_gender"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:hint="Sexo">
android:orientation="horizontal"
android:layout_marginBottom="16dp">
<AutoCompleteTextView
android:id="@+id/edit_gender"
android:layout_width="match_parent"
<RadioButton
android:id="@+id/rb_masculino"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="none" />
</com.google.android.material.textfield.TextInputLayout>
android:text="Masculino"
android:buttonTint="?attr/colorPrimary"
android:layout_marginEnd="16dp"/>
<RadioButton
android:id="@+id/rb_feminino"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="?attr/colorPrimary"
android:text="Feminino"
android:layout_marginEnd="16dp"/>
<RadioButton
android:id="@+id/rb_outro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="?attr/colorPrimary"
android:text="Outro"/>
</RadioGroup>
<LinearLayout
android:layout_width="match_parent"
@@ -163,12 +191,12 @@
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_guardar_alteracoes"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_height="60dp"
android:text="GUARDAR ALTERAÇÕES"
android:textSize="14sp"
android:textSize="15sp"
android:textStyle="bold"
app:cornerRadius="28dp"
app:backgroundTint="#000000"
app:cornerRadius="30dp"
app:backgroundTint="?attr/colorPrimary"
android:textColor="@color/white"/>
</LinearLayout>

View File

@@ -3426,7 +3426,6 @@ int id east 0x7f0900ce
int id edge 0x7f0900cf
int id edit_consulta_motivo 0x7f0900d0
int id edit_email 0x7f0900d1
int id edit_gender 0x7f0900d2
int id edit_horario_fim 0x7f0900d3
int id edit_horario_inicio 0x7f0900d4
int id edit_med_name 0x7f0900d5
@@ -3658,8 +3657,11 @@ int id progress_circular 0x7f0901b6
int id progress_horizontal 0x7f0901b7
int id radio 0x7f0901b8
int id ratio 0x7f0901b9
int id rb_feminino 0x7f090275
int id rb_inhalatory 0x7f0901ba
int id rb_masculino 0x7f090276
int id rb_oral 0x7f0901bb
int id rb_outro 0x7f090277
int id rb_topical 0x7f0901bc
int id rectangles 0x7f0901bd
int id recycler_aceites 0x7f0901be
@@ -3673,6 +3675,7 @@ int id report_drawn 0x7f0901c5
int id reset_button 0x7f0901c6
int id reverseSawtooth 0x7f0901c7
int id rg_administration 0x7f0901c8
int id rg_gender 0x7f090278
int id right 0x7f0901c9
int id rightToLeft 0x7f0901ca
int id right_icon 0x7f0901cb

View File

@@ -3427,7 +3427,6 @@ id east
id edge
id edit_consulta_motivo
id edit_email
id edit_gender
id edit_horario_fim
id edit_horario_inicio
id edit_med_name
@@ -3659,8 +3658,11 @@ id progress_circular
id progress_horizontal
id radio
id ratio
id rb_feminino
id rb_inhalatory
id rb_masculino
id rb_oral
id rb_outro
id rb_topical
id rectangles
id recycler_aceites
@@ -3674,6 +3676,7 @@ id report_drawn
id reset_button
id reverseSawtooth
id rg_administration
id rg_gender
id right
id rightToLeft
id right_icon