So I encountered a problem about the Intent. A little background:
I have a customed class called Workout (Data structures) with constructor and all this stuff. The point is i want to make an intent which kinda looks like this:
Workout workoutP=new Workout(...);
...
intent.put????("workout", workoutP);
Is there any way to pass it from one activity to another?