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 trialalex gwartney
8,849 PointsDon't forget to initialize your variable using the AlertDialog.Builder constructor not seeing a class constructor?
im more than likely looking for the wrong thing but the instructions are confusing me are they talking about a class instructor when starting the new dialog builder. Or am i looking for something else thanks?
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.widget.EditText;
public class GuessNumberActivity extends Activity {
protected EditText mNumberField ;
protected String mUserInput;
/*
* onCreate() and other code has been omitted for brevity!
*/
public void makeGuess() {
// Check to see if the user's number is correct
boolean isCorrect = GuessEngine.testGuess(mUserInput);
mUserInput = mNumberField.getText().toString();
if(mUserInput.isEmpty()){
AlertDialog.Builder builder = new AlertDialog.Builder(GuessNumberActivity.this);
}
}
}