Hi guys, this time I would like to ask you in what way I pass and I receive parameters from a custom class that I created at an intent
for example:
Intent i = new Intent(this, ValidarCumplimiento.class );
Vehiculo el_vehiculo = new Vehiculo("ASD384", true, 1, 45);
i.putExtra("vehiculo", el_vehiculo );
startActivity(i);
capture it (I do not know how to do it):
Bundle params = getIntent().getExtras();
hora = params.getString("vehiculo");
in advance, thank you very much for your collaboration, which is so useful!