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

Set the text of the holder.title TextView object to the title of the listing we just looked up. Hint: Use the title prop

ListingsAdapter.java

1 // This is an excerpt from the full file. 2 ​ 3 public void onBindViewHolder(ListingHolder holder, int position) { 4 final Listing listing = listings.results[position]; 5 listingHolder.titleView.setText(listing.title); // Set this variable! 6 } 7 ​

1 Answer

public void onBindViewHolder(ListingHolder holder, int position) { Listing listing = listings.results[position]; holder.title.setText(listing.title);// Set this variable! }