So the case is i want to send data from one activity to another with the help of ArrayList of objects. Below is the class code which i want to use as object. So please tell me t
1st Activity
Arraylist values; Intent it=new Intent(MainActivity.this,Next.class); it.putExtra("value", values); startActivity(it);
2nd Activity
Arraylist list; list=(ArrayList) getIntent().getSerializableExtra("value");