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 trialCody Harder
1,839 PointsWhat am i doing wrong?
Question - Initialize the getAnswerButton variable using the findViewById() method like the TextView above it. The ID for the button is 'button1', and don't forget to cast it to a Button with '(Button)'!
My Answer - Button getAnswerButton = (Button) findviewById(R.id.button1);
2 Answers
Stone Preston
42,016 Pointsyou need to capitalize the v in View
Button getAnswerButton = (Button) findViewById(R.id.button1);
Jefrie Polanco
2,844 PointsActually I found that by removing '(Button)' and just leaving 'findViewById(R.id.button1);'fixes the issue. Which leaves me to wonder why they tell us to remember to add the (Button) to it...
Stone Preston
42,016 PointsThis is just a guess but findviewbyid most likely returns a basic view type, so if you want to assign the return value to a button you have to cast that returned view to a button using (Button)