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 Build a Simple Android App Improving Our Code Creating a New Class

Now add a String field (member variable) named mTitle. Make it public.

The first step was : Let's create a new class! Start by declaring a new class named PictureBook. Make it public.

I've already done it and i was stuc and the second part which is "Now add a String field (member variable) named mTitle. Make it public."

I've Done:

public class PictureBook {

public String mTitle() {

}

}

PictureBook.java
public class PictureBook {



}

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Clifford,

You are are the right track, but variables do not take parameters, so no parenthesis, and they don't have code blocks, so no curly braces. I think you may be confusing it with methods (functions).

Just fix that up and your good to go. Maybe a quick variable declaration review might help a bit too. :)

Keep Coding! :dizzy:

I already figured it out... I was thing about methods but the instruction says field member .. Thank you so much for help.