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 trialZubeyr Aciksari
21,074 PointsNow it's time to work on the CREATOR variable. The first thing we need to do is return a new VideoGame in the createFrom
Can anyone please send the answer? I am stuck in here.. Thanks!
public class VideoGame implements Parcelable {
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) {
dest.writeString(mTitle);
dest.writeInt(mYear);
}
public VideoGame(Parcel in) {
// Task 1 code here!
mTitle = in.readString();
mYear = in.readInt();
}
public static final Creator<VideoGame> CREATOR = new Creator<VideoGame>() {
@Override
public VideoGame createFromParcel(Parcel source) {
// Task 2 code here!
VideoGame videoGame = new VideoGame(source);
return VideoGame;
}
@Override
public VideoGame[] newArray(int size) {
// Task 3 code here!
return new VideoGame[0];
}
};
}
2 Answers
Justin Horner
Treehouse Guest TeacherHello Zubeyr,
The video game variable is named "videoGame" but you are returning "VideoGame", the name of the class. Since variable names are case-senstive in Java, you need to return "videoGame".
I hope this helps.
Zubeyr Aciksari
21,074 PointsThanks, it helped :)
Justin Horner
Treehouse Guest TeacherYou're welcome!