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

gustp
gustp
2,526 Points

How to access the text from a textview in android

How do I access the text from a textView,

   I have tried this code but the string I get back from responseText is "" 
   which isn't whats currently on the text property of the view with id of response_text
   responseTextView is of datatype TextView
  When I use the debugger and check the responseTextView variable I get properties but I cant seem the find a property called text even tho it exists in the xml design view properties, should this be the problem? is the getText() function the incorrect function to use here?


   responseTextView = (TextView)findViewById(R.id.response_text);
   responseText = responseTextView.getText().toString();