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 (retired 2014) Getting Started with Android Android Setup and the Crystal Ball Project

what does this error mean?

Description Resource Path Location Type [I18N] Hardcoded string "AskME", should use @string resource activity_main.xml /AskME/res/layout line 25 Android Lint Problem

1 Answer

You're getting the error because you hard coded the string into your layout file. It's always a good practice to add them to the string resource file and then reference them from the layout, but that's just a warning that Eclipse is giving you. Don't worry about it for now, because Ben will teach you the proper way to use Strings as you go on with your project :-)