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

why do you need a cast before findviewbyid

https://teamtreehouse.com/library/build-a-simple-android-app-2/basic-android-programming/accessing-views-in-code-assigning-variables

I still dont get what is a class and why do you need to put a cast before findviewbyid

1 Answer

Tom Finet
Tom Finet
7,027 Points

A class is just a blueprint for creating objects which defines its properties and behaviours. The method findViewById returns a View. Since most of the time android developers use a child class of the View class, such as a TextView (extends View), we need to cast it to a TextView for example.

Hope this helps and happy coding!