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 trialRodrigo Ayala
2,791 PointsStage 2 --- Error Messages with Dialogs
Hi , i have a question about the code challenge 2/5. The objective is to set the mUserInput using the text value from mNumberField.
public class GuessNumberActivity extends Activity {
protected String mUserInput;
protected EditText mNumberField;
/*
* onCreate() and other code has been omitted for brevity!
*/
public void makeGuess() {
// Set mUserInput here!
mUserInput = (EditText)findViewbyId(R.id.****);
// Check to see if the user's number is correct
boolean isCorrect = GuessEngine.testGuess(mUserInput);
}
}
What should i put in the findViewById or this is not the way to set it? Thanks.
1 Answer
Daniel Hartin
18,106 PointsIt is a bit unclear but the description states that the view is declared in the onCreate method. What you should type is mUserInput = mNumberField. getText().toString();
This assigns the user input the numberfield value by using the getText method, you also need to add toString at the end to convert the value to a string to match the variable type.