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 Blog Reader Android App Adapting Data for Display in a List Handling Errors Using Dialogs

Chanllenge Task 3 of 4 not working

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(R.string.dialog_title);
builder.setMessage(R.string.dialog_message);

This is correct as it worked perfectly on my phone but the emulator states that there is an error, any idea?

1 Answer

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle( this.getString( R.string.dialog_title ) );
builder.setMessage( this.getString( R.string.dialog_message ) );

This is the answer even though I was not taught to use this.toString(), also, we are told to use R.string even though xml file is strings.xml. Please fix this treehouse. Hope this helps someone.