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 (2014) Improving Our Code Creating a Class

im getting an error message that says i have to include a return statement

please help guys, if i return a null it gives an error

PictureBook.java
public class PictureBook {

  public String mTitle (){
    return "";

  }

}

1 Answer

Hiya,

In this challenge you are first creating a public class, which you've done, then adding a member variable. You have added a method.

If you just declare a public variable of type String inside the class, then you will have completed the challenge.

public class PictureBook {

    public String mTitle;

}

That should do it!

Steve.

thanx steve, you saved me

No problem!