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 Android Lists and Adapters (2015) Custom ListViews Setting the Data

alexvalladares
alexvalladares
21,478 Points

Resource id in holder?

Hi everyone,

In this step, we are assigning

holder.temperatureLabel = (TextView) convertView.findViewById(R.id.temperatureLabel);

I have noticed we have two resources with the same temperatureLabel, one in the activity_main layout and another in the daily_list_item layout, how does the ide know we want to assign just the second?

Thanks!!

Sorry for posting this off-topic, but I'm helping Treehouse investigate a potential issue with their webserver. Please follow this link and leave a comment saying if you have experienced this webserver issue or not.

https://teamtreehouse.com/forum/attention-treehouse-webserver-issues-please-read

Thank you.

2 Answers

Jon Kussmann
PLUS
Jon Kussmann
Courses Plus Student 7,254 Points

That is a good question.

When you call:

holder.temperatureLabel = (TextView) convertView.findViewById(R.id.temperatureLabel);

You have a variable called "convertView" which is a view. When you call the method "findViewById()" on it, it is searching for "R.id.temperatureLabel" that is a part of that view (that is, "convertView"). So, whichever layout that corresponds to convertView will be the temperatureLabel that it finds.

alexvalladares
alexvalladares
21,478 Points

Pretty neat answer Jon,

Thanks!