Actividad Consultar (Completa) y Actividad Modificar Paciente (Incompleta)
This commit is contained in:
parent
0280d87198
commit
61d7116023
|
@ -12,6 +12,9 @@
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.MedicalHealth"
|
android:theme="@style/Theme.MedicalHealth"
|
||||||
tools:targetApi="31">
|
tools:targetApi="31">
|
||||||
|
<activity
|
||||||
|
android:name=".ConsultarPacientesActivity"
|
||||||
|
android:exported="false" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".EliminarActivity"
|
android:name=".EliminarActivity"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
package com.terratenientes.medicalhealth
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint
|
||||||
|
import android.content.Intent
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import android.os.Bundle
|
||||||
|
import com.terratenientes.medicalhealth.databinding.ActivityConsultarPacientesBinding
|
||||||
|
|
||||||
|
class ConsultarPacientesActivity : AppCompatActivity() {
|
||||||
|
|
||||||
|
private lateinit var binding : ActivityConsultarPacientesBinding
|
||||||
|
private lateinit var db: DoctorDataBaseHelper
|
||||||
|
private lateinit var pacientesList: MutableList<Paciente>
|
||||||
|
private var pacienteSeleccionado: Paciente? = null
|
||||||
|
private lateinit var infoPaciente : Array<String>
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
binding = ActivityConsultarPacientesBinding.inflate(layoutInflater)
|
||||||
|
val view = binding.root
|
||||||
|
setContentView(view)
|
||||||
|
db = DoctorDataBaseHelper(this@ConsultarPacientesActivity)
|
||||||
|
|
||||||
|
cargarListaPacientes()
|
||||||
|
|
||||||
|
binding.listaPacientes.setOnItemClickListener { _, _, position, _ ->
|
||||||
|
pacienteSeleccionado = pacientesList[position]
|
||||||
|
val intent = Intent(this@ConsultarPacientesActivity, ModificarActivity::class.java)
|
||||||
|
intent.putExtra("Id", pacienteSeleccionado!!.id)
|
||||||
|
intent.putExtra("Nombre Paciente", pacienteSeleccionado!!.nombre)
|
||||||
|
intent.putExtra("Apellido Paterno", pacienteSeleccionado!!.apellidoPaterno)
|
||||||
|
intent.putExtra("Apellido Materno", pacienteSeleccionado!!.apellidoMaterno)
|
||||||
|
intent.putExtra("Domicilio", pacienteSeleccionado!!.domicilio)
|
||||||
|
intent.putExtra("Edad", pacienteSeleccionado!!.edad)
|
||||||
|
intent.putExtra("Sexo", pacienteSeleccionado!!.sexo)
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun cargarListaPacientes() {
|
||||||
|
pacientesList = obtenerListaPacientes()
|
||||||
|
val adapter = PacienteAdapter(this, pacientesList)
|
||||||
|
binding.listaPacientes.adapter = adapter
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressLint("Range")
|
||||||
|
private fun obtenerListaPacientes(): MutableList<Paciente> {
|
||||||
|
val pacientes = mutableListOf<Paciente>()
|
||||||
|
val db = db.readableDatabase
|
||||||
|
val cursor = db.rawQuery("SELECT * FROM ${DoctorDataBaseHelper.TABLE_PACIENTES}", null)
|
||||||
|
while (cursor.moveToNext()) {
|
||||||
|
val id = cursor.getInt(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_ID_PACIENTE))
|
||||||
|
val nombre = cursor.getString(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_NOMBRE_PACIENTE))
|
||||||
|
val apellidoPaterno = cursor.getString(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_APELLIDO_PATERNO_PACIENTE))
|
||||||
|
val apellidoMaterno = cursor.getString(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_APELLIDO_MATERNO_PACIENTE))
|
||||||
|
val edad = cursor.getInt(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_EDAD))
|
||||||
|
val sexo = cursor.getString(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_SEXO))
|
||||||
|
val domicilio = cursor.getString(cursor.getColumnIndex(DoctorDataBaseHelper.COLUMN_DOMICILIO))
|
||||||
|
val paciente = Paciente(id, nombre, apellidoPaterno, apellidoMaterno, edad, sexo, domicilio)
|
||||||
|
pacientes.add(paciente)
|
||||||
|
}
|
||||||
|
cursor.close()
|
||||||
|
return pacientes
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun guardarDatosPaciente(paciente : Paciente){
|
||||||
|
infoPaciente = arrayOf(paciente.nombre.toString(), paciente.apellidoPaterno.toString(), paciente.apellidoMaterno.toString(), paciente.domicilio.toString(), paciente.edad.toString(), paciente.sexo.toString())
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -75,6 +75,24 @@ class DoctorDataBaseHelper (context: Context) : SQLiteOpenHelper(context, DATABA
|
||||||
db.insert(TABLE_PACIENTES, null, values)
|
db.insert(TABLE_PACIENTES, null, values)
|
||||||
db.close()
|
db.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun modificarPaciente(paciente: Paciente){
|
||||||
|
val db = writableDatabase
|
||||||
|
val values = ContentValues().apply {
|
||||||
|
put(COLUMN_NOMBRE_PACIENTE, paciente.nombre)
|
||||||
|
put(COLUMN_APELLIDO_PATERNO_PACIENTE, paciente.apellidoPaterno)
|
||||||
|
put(COLUMN_APELLIDO_MATERNO_PACIENTE, paciente.apellidoMaterno)
|
||||||
|
put(COLUMN_DOMICILIO, paciente.domicilio)
|
||||||
|
put(COLUMN_EDAD, paciente.edad)
|
||||||
|
put(COLUMN_SEXO, paciente.sexo)
|
||||||
|
}
|
||||||
|
val whereClause = "$COLUMN_NOMBRE_PACIENTE = ? and $COLUMN_APELLIDO_PATERNO_PACIENTE = ? and $COLUMN_APELLIDO_MATERNO_PACIENTE = ?"
|
||||||
|
//val whereArgs = arrayOf(paciente.id.toString())
|
||||||
|
val whereArgs = arrayOf(paciente.nombre, paciente.apellidoPaterno, paciente.apellidoMaterno)
|
||||||
|
db.update(TABLE_PACIENTES, values, whereClause, whereArgs)
|
||||||
|
db.close()
|
||||||
|
}
|
||||||
|
|
||||||
fun createTable(){
|
fun createTable(){
|
||||||
val db=writableDatabase
|
val db=writableDatabase
|
||||||
val crearTablaDoctores="CREATE TABLE $TABLE_NAME($COLUMN_CEDULA VARCHAR(30) PRIMARY KEY, $COLUMN_NOMBRE VARCHAR(30)," +
|
val crearTablaDoctores="CREATE TABLE $TABLE_NAME($COLUMN_CEDULA VARCHAR(30) PRIMARY KEY, $COLUMN_NOMBRE VARCHAR(30)," +
|
||||||
|
|
|
@ -32,6 +32,11 @@ class MainActivity : AppCompatActivity() {
|
||||||
val intent = Intent(this@MainActivity, AgregarActivity::class.java)
|
val intent = Intent(this@MainActivity, AgregarActivity::class.java)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
binding.btnPrueba2.setOnClickListener {
|
||||||
|
val intent = Intent(this@MainActivity, ConsultarPacientesActivity::class.java)
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@SuppressLint("SuspiciousIndentation")
|
@SuppressLint("SuspiciousIndentation")
|
||||||
private fun cargarDatos(){
|
private fun cargarDatos(){
|
||||||
|
|
|
@ -2,14 +2,41 @@ package com.terratenientes.medicalhealth
|
||||||
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.widget.Toast
|
||||||
import com.terratenientes.medicalhealth.databinding.ActivityModificarBinding
|
import com.terratenientes.medicalhealth.databinding.ActivityModificarBinding
|
||||||
|
|
||||||
class ModificarActivity : AppCompatActivity() {
|
class ModificarActivity : AppCompatActivity() {
|
||||||
|
|
||||||
lateinit var binding : ActivityModificarBinding
|
lateinit var binding : ActivityModificarBinding
|
||||||
|
private lateinit var paciente : Paciente
|
||||||
|
private lateinit var db: DoctorDataBaseHelper
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
binding = ActivityModificarBinding.inflate(layoutInflater)
|
binding = ActivityModificarBinding.inflate(layoutInflater)
|
||||||
val view = binding.root
|
val view = binding.root
|
||||||
setContentView(view)
|
setContentView(view)
|
||||||
|
db = DoctorDataBaseHelper(this@ModificarActivity)
|
||||||
|
paciente = Paciente(intent.getIntExtra("Id",0),intent.getStringExtra("Nombre Paciente").toString(),intent.getStringExtra("Apellido Paterno").toString(), intent.getStringExtra("Apellido Materno").toString(), intent.getIntExtra("Edad", 20), intent.getStringExtra("Sexo").toString(), intent.getStringExtra("Domicilio").toString())
|
||||||
|
llenarCampos()
|
||||||
|
binding.btnModificar.setOnClickListener {
|
||||||
|
actualizarPaciente(paciente)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun actualizarPaciente(paciente : Paciente) : Unit {
|
||||||
|
db.modificarPaciente(paciente)
|
||||||
|
finish()
|
||||||
|
Toast.makeText(this@ModificarActivity, "Información Actualizada UwU", Toast.LENGTH_LONG).show()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun llenarCampos() : Unit {
|
||||||
|
binding.etNombre.setText(paciente.nombre)
|
||||||
|
binding.etApellidoPaterno.setText(paciente.apellidoPaterno)
|
||||||
|
binding.etApellidoMaterno.setText(paciente.apellidoMaterno)
|
||||||
|
binding.etDomicilio.setText(paciente.domicilio)
|
||||||
|
binding.tvEdad.setText("Edad: ${paciente.edad}")
|
||||||
|
binding.tvSexo.setText("Sexo: ${paciente.sexo}")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -21,14 +21,14 @@
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_width="200dp"
|
android:layout_width="200dp"
|
||||||
android:layout_height="150dp"
|
android:layout_height="150dp"
|
||||||
android:layout_marginTop="5dp"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_gravity="center_horizontal"
|
android:layout_gravity="center_horizontal"
|
||||||
android:src="@drawable/image_area"/>
|
android:src="@drawable/image_area"/>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="0dp"
|
android:layout_marginTop="35dp"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
tools:ignore="ExtraText">
|
tools:ignore="ExtraText">
|
||||||
|
|
||||||
|
@ -67,34 +67,47 @@
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/edtx_nombre"
|
android:id="@+id/edtx_nombre"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="10dp"
|
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
|
android:layout_marginTop="28dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
android:hint="@string/ht_nombre"/>
|
android:background="@drawable/radius_tv"
|
||||||
|
android:hint="@string/ht_nombre"
|
||||||
|
android:textColor="#212121"
|
||||||
|
android:paddingStart="10dp" />
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/edtx_apellidoPat"
|
android:id="@+id/edtx_apellidoPat"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="28dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
|
android:textColor="#212121"
|
||||||
android:hint="@string/ht_apellido_paterno"/>
|
android:hint="@string/ht_apellido_paterno"/>
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/edtx_apellidoMat"
|
android:id="@+id/edtx_apellidoMat"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="28dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:textColor="#212121"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
android:hint="@string/ht_apellido_materno"/>
|
android:hint="@string/ht_apellido_materno"/>
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/edtx_domicilio"
|
android:id="@+id/edtx_domicilio"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="28dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:textColor="#212121"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
android:hint="@string/ht_domicilio"/>
|
android:hint="@string/ht_domicilio"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
@ -102,7 +115,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="50dp"
|
android:layout_marginStart="50dp"
|
||||||
android:layout_marginTop="5dp"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_marginEnd="50dp"
|
android:layout_marginEnd="50dp"
|
||||||
android:text="@string/bt_agregar" />
|
android:text="@string/bt_agregar" />
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
tools:context=".ConsultarPacientesActivity">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:textSize="32dp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textColor="@color/tv_titulo"
|
||||||
|
android:text="@string/tv_titulo_consultar"
|
||||||
|
android:gravity="center"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ListView
|
||||||
|
android:id="@+id/lista_pacientes"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="5dp"
|
||||||
|
android:layout_marginTop="10dp"
|
||||||
|
android:layout_marginEnd="5dp"
|
||||||
|
android:listSelector="@drawable/list_item_selected_background"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
|
@ -68,6 +68,17 @@
|
||||||
android:backgroundTint="@color/tv_titulo"
|
android:backgroundTint="@color/tv_titulo"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/btn_prueba2"
|
||||||
|
android:layout_marginTop="25dp"
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Prueba2"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:background="@drawable/radius_btn"
|
||||||
|
android:backgroundTint="@color/tv_titulo"
|
||||||
|
/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_marginTop="25dp"
|
android:layout_marginTop="25dp"
|
||||||
android:id="@+id/tv_registrarme"
|
android:id="@+id/tv_registrarme"
|
||||||
|
|
|
@ -32,49 +32,68 @@
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/tv_edad"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="65dp"
|
android:layout_marginStart="40dp"
|
||||||
android:text="@string/et_modificar_edad"/>
|
android:text="@string/et_modificar_edad"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/tv_sexo"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="180dp"
|
android:layout_marginStart="179dp"
|
||||||
android:text="@string/et_modificar_sexo"/>
|
android:text="@string/et_modificar_sexo"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
|
android:id="@+id/et_nombre"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
|
android:textColor="#212121"
|
||||||
android:hint="@string/ht_nombre"/>
|
android:hint="@string/ht_nombre"/>
|
||||||
<EditText
|
<EditText
|
||||||
|
android:id="@+id/et_apellido_paterno"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="25dp"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
|
android:textColor="#212121"
|
||||||
android:hint="@string/ht_apellido_paterno"/>
|
android:hint="@string/ht_apellido_paterno"/>
|
||||||
<EditText
|
<EditText
|
||||||
|
android:id="@+id/et_apellido_materno"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="25dp"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
|
android:textColor="#212121"
|
||||||
android:hint="@string/ht_apellido_materno"/>
|
android:hint="@string/ht_apellido_materno"/>
|
||||||
<EditText
|
<EditText
|
||||||
|
android:id="@+id/et_domicilio"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="50sp"
|
||||||
android:layout_marginTop="25dp"
|
android:layout_marginTop="25dp"
|
||||||
android:layout_marginStart="40dp"
|
android:layout_marginStart="40dp"
|
||||||
android:layout_marginEnd="40dp"
|
android:layout_marginEnd="40dp"
|
||||||
|
android:paddingStart="10dp"
|
||||||
|
android:background="@drawable/radius_tv"
|
||||||
|
android:textColor="#212121"
|
||||||
android:hint="@string/ht_domicilio"/>
|
android:hint="@string/ht_domicilio"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
|
android:id="@+id/btn_modificar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/bt_modificar"
|
android:text="@string/bt_modificar"
|
||||||
|
|
|
@ -22,4 +22,7 @@
|
||||||
<string name="btn_iniciar_sesion">Iniciar Sesion</string>
|
<string name="btn_iniciar_sesion">Iniciar Sesion</string>
|
||||||
<string name="txt_registrarme">Registrarme</string>
|
<string name="txt_registrarme">Registrarme</string>
|
||||||
|
|
||||||
|
<!-- Consultar Pacientes Activity -->
|
||||||
|
<string name="tv_titulo_consultar">Pacientes</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in New Issue