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 an Interactive Story App (Retired) User Input Getting Text from an EditText

Maryna Nogtieva
Maryna Nogtieva
12,005 Points

mistake? 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

CodeChallenge.java
EditText petNameField = (EditText)findViewById(R.id.petNameField);
String petName = petNameField + " " ;

1 Answer

Chase Marchione
Chase Marchione
155,055 Points

Hi 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!