Modificaciones en la Pantalla Compra
This commit is contained in:
parent
4d44833c01
commit
6d1086fab7
|
@ -4,34 +4,58 @@ import android.content.Intent
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.widget.Button
|
import android.widget.Button
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
|
import android.widget.ImageView
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
|
import androidx.appcompat.app.AlertDialog
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
|
||||||
|
|
||||||
class compra: AppCompatActivity() {
|
class compra: AppCompatActivity() {
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.pantallacompra)
|
setContentView(R.layout.pantallacompra)
|
||||||
|
|
||||||
val btnCancelar: Button = findViewById(R.id.buttonCancelar)
|
val btnComprar: Button = findViewById(R.id.buttonComprar)
|
||||||
val editTextNombre: EditText = findViewById(R.id.editTextNombre)
|
val editTextNombre: EditText = findViewById(R.id.editTextNombre)
|
||||||
val editTextTelefono: EditText = findViewById(R.id.editTextTelefono)
|
val editTextTelefono: EditText = findViewById(R.id.editTextTelefono)
|
||||||
val btnComprar: Button = findViewById(R.id.buttonComprar)
|
|
||||||
|
|
||||||
btnComprar.setOnClickListener {
|
btnComprar.setOnClickListener {
|
||||||
val nombre = editTextNombre.text.toString()
|
val nombre = editTextNombre.text.toString()
|
||||||
val telefono = editTextTelefono.text.toString()
|
val telefono = editTextTelefono.text.toString()
|
||||||
|
|
||||||
if (nombre.isNotEmpty() && telefono.isNotEmpty()) {
|
// Verifica si se ingresó un nombre y un teléfono antes de mostrar el mensaje
|
||||||
val mensaje = "Nombre: $nombre\nTeléfono: $telefono"
|
if (nombre.isNotEmpty() && telefono.isNotEmpty()) {
|
||||||
Toast.makeText(this, mensaje, Toast.LENGTH_SHORT).show()
|
val mensaje = "Nombre: $nombre\nTeléfono: $telefono"
|
||||||
} else {
|
mostrarMensaje(mensaje)
|
||||||
Toast.makeText(this, "Por favor, ingrese su nombre y número de teléfono", Toast.LENGTH_SHORT).show()
|
} else {
|
||||||
}
|
mostrarAlerta("Error", "Por favor, ingrese su nombre y número de teléfono")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
btnCancelar.setOnClickListener {
|
val btnCancelar: Button = findViewById(R.id.buttonCancelar)
|
||||||
val intent = Intent(this, EventList::class.java)
|
|
||||||
startActivity(intent)
|
btnCancelar.setOnClickListener {
|
||||||
}
|
val intent = Intent(this, EventList::class.java)
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun mostrarMensaje(mensaje: String) {
|
||||||
|
val builder = AlertDialog.Builder(this)
|
||||||
|
builder.setTitle("Datos de la compra")
|
||||||
|
builder.setMessage(mensaje)
|
||||||
|
builder.setPositiveButton("Aceptar", null)
|
||||||
|
val dialog = builder.create()
|
||||||
|
dialog.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun mostrarAlerta(titulo: String, mensaje: String) {
|
||||||
|
val builder = AlertDialog.Builder(this)
|
||||||
|
builder.setTitle(titulo)
|
||||||
|
builder.setMessage(mensaje)
|
||||||
|
builder.setPositiveButton("Aceptar", null)
|
||||||
|
val dialog = builder.create()
|
||||||
|
dialog.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue