this is what i am doing.
"e" is defined as
Option e[];
where Option is my class that implements Serializable
Intent intent =new Intent(this,list_create.class);
intent.putExtra("element", e);
startActivity(intent);
and in the second activity i am retrieving like this
Intent i = getIntent();
Option e = (Option)i.getSerializableExtra("element");
but its giving a java.io.notSerializableException at "startActivity(intent)". What am i doing wrong here??