quero agora marcar as consultas e medicamentos para os apcientes
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user