I am trying to send a Parcelable object which also contains another Parcelable object with Intent. However, I am getting NullPointer Exception. Could you please tell me where I
You have to instanciate your ArrayList< B > in :
private A (Parcel in){ var = new ArrayList(); in.readTypedList(this.var, B.CREATOR); }
Say if it works :)