The object in the arraylist is defined in an external library. The object contains some int values and also a float[].
How can I pass all the ArrayList from an activity
Intent intent = new Intent(this, TargetActivity.class); intent.putExtra("nameOfArray",YOUR_ARRAY_LIST); startActivity(intent);