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 trial

Android Android Lists and Adapters (2015) Using Parcelable Data Writing Parcelable Data

We 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!

VideoGame.java
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

dest.writeString(mTitle); dest.writeInt(mYear);

Thanks Vengai