If you are an android developer, you must know passing object between objects is painful sometimes, it requires some boilerplate code. Normally, we implement Parceble interface for our model class, manually write every fields into Parcel object. And use these two method to put and get your object. intent.putExtra("xx", yourObject)
intent.extras.getParcelable("xx")…