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 trialqlpxjevhuv
10,503 PointsDeclaring Views
Instead of using Butter Knife for declaring the views, can't I just declare the views all on one line? Or is there some reason we instantiate them within the OnCreate method?
For example,
private TextView mTemperatureLabel = (TextView) findViewById(R.id.temperaturelabel);
1 Answer
Ruan Lopes de Souza
4,854 PointsOnCreate() is responsible to create views, bind data to lists, etc. This is where all the lifecycle of your app start, you could declare your TextView and also initiate it inside this method but doing that you are limiting this TextView just for this method (Local Scope), The reason to declare variables and views outside the Oncreate() is to make them accessible for the whole class (Global scope) and just after it you initiate them inside the method OnCreate that finally will create the views and etc.