i have set of values in android listview. when i click submit button i want to get whole list in another activity. i tried with intent.putExtra(); but i am getting following error .
java.lang.RuntimeException: Parcel: unable to marshal value com.example.technical14.recyclers.Planet@4011368
My Code is -
proceed.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
ArrayList<Planet> apl = planetsList;
Intent intent = new Intent(MainActivity.this, Proceed.class);
intent.putExtra("QuestionListExtra", apl);
startActivity(intent);
}
});
i am new to the android. so please help me on this.