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

drizzy drake
PLUS
drizzy drake
Courses Plus Student 2,469 Points

It'sCorrect, but doesn't let me go to next Question. unless i missed something

It's a simple question i can't believe it's not letting me go to next question.

CodeChallenge.java
/*** This code is an excerpt from a class that extends Activity ***/
AlertDialog.Builder builder = new AlertDialog.Builder(this);


builder.setTitle(R.string.dialog_title);
builder.setMessage(R.string.dialog_message);



//builder.setPositiveButton(android.R.string.ok, null);
  //          AlertDialog dialog = builder.create();
    //        dialog.show()
strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="dialog_title">Ooops Sorry</string>
    <string name="dialog_message">There was an error with the Blog</string>
</resources>