0
I am trying to pass an object per parameter, but an error occurs on the line "it.putExtra("tag", obj);":
Cannot resolve method (java.lang.String, my.minhaClasse package)
Follow the code
Obj obj = new Obj();
Intent it;
it = new Intent(this, MinhaClasse.class);
it.putExtra("tag", obj);
startActivity(it);
Another question, how to recover this object in the other Activity?
Hello, this reply may help you http://answall.com/questions/70421/como-passar-informacoes-da-listview-para-uma-activity/70456#70456
– rsicarelli
This question may be very useful to you, Vitor: http://answall.com/questions/38492
– emanuelsn