Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBrandi Lewis
1,923 PointsWe have a simple VideoGame class that we need to make Parcelable. We will start by writing the data. Write the member
We have a simple VideoGame class that we need to make Parcelable. We will start by writing the data. Write the member variables to the dest Parcel in the writeToParcel() method. Use the appropriate write methods!
public String mTitle = "";
public int mYear = 0;
public VideoGame() {
// intentionally blank
}
// getters and setters omitted for brevity!
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
// Task 1 code here!
dest.writeString(mTitle);
dest.writeString(mTitle);
dest.writeLong(mHour);
}
2 Answers
MUZ140769 Vengai Muponda
4,151 Pointsdest.writeString(mTitle); dest.writeInt(mYear);
MUZ140681 Tatenda Muchaziwepi
4,340 PointsThanks Vengai