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 trialDanny Argueta
797 Pointsfinding TextView1 in id
I have textView1 under Relative Layout in graphical layout view. But when I follow the code for MainActivity.java, I can't find textView1 under id.
1 Answer
Gunjeet Hattar
14,483 PointsSimply go back to you layout .xml file with the graphical editor. Select the text view you mentioned and look for its id in the properties panel just below it.
Just make sure you are calling it from the R resource file like this in MainActivity.java file
TextView mTextLabel = (TextView) findViewById(R.id.textView1);
You could also check if you might have added a different id to the textView.
Ask again if this does not help.