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 trialMaryna Nogtieva
12,005 Pointsmistake? EditText petNameField = (EditText)findViewById(R.id.petNameField); String petName = petNameField + " " ;
Hi, I'm new to android, Cannot find where is my mistake in this exercise
EditText petNameField = (EditText)findViewById(R.id.petNameField);
String petName = petNameField + " " ;
1 Answer
Chase Marchione
155,055 PointsHi Maryna,
We'll use two methods, chained together (one after another) to get the text from the petNameField and then convert the retrieved value to a String (since EditText data cannot naturally be stored in a String, we must convert the data to String for our statement to do its job.)
EditText petNameField = (EditText)findViewById(R.id.petNameField);
String petName = petNameField.getText().toString();
Hope this helps!