Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 26, 2019 15:51
Show Gist options
  • Save parzibyte/cbdb8ac5a7934a6899d463facd60970c to your computer and use it in GitHub Desktop.
Save parzibyte/cbdb8ac5a7934a6899d463facd60970c to your computer and use it in GitHub Desktop.
btnAgregar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String nombre = editTextNombre.getText().toString();
String edad = editTextEdad.getText().toString();
if (nombre.isEmpty() || edad.isEmpty()) {
Toast.makeText(MainActivity.this, "Rellena los campos", Toast.LENGTH_SHORT).show();
return;
}
adaptadorRecyclerView.agregarMascota(new Mascota(nombre, Integer.valueOf(edad)));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment