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

How do you add a new string?

I don't know what I'm doing wrong. Could someone help me?

PictureBook.java
public class PictureBook {
 public String mTile() {

 }
}

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hi Yusuf,

You've created your Class which is one of the steps of the challenge. To create a string you declare it as a variable of the String data type.

You don't need to include a code block for it as it's a public field (or member variable) inside the PictureBook class.

   public String mTitle;

All you need to do, is declare the access modifier, the data type and the name of the field/variable.

Thanks so much! :)