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 trialMUZ140984 Tatenda Mangoro
5,631 Pointsprice holder text
Set the text of the holder.price TextView object to the price string of the listing we just looked up.
// This is an excerpt from the full file.
public void onBindViewHolder(ListingHolder holder, int position) {
Listing listing = listings.results[position];
holder.title.setText(listing.title);
// Set this variable!
}
2 Answers
Steve Hunter
57,712 PointsHi there,
OK - so you've done the listing
assignment which is working fine. You've set the title
, you just need the price
set now. That's very similar to the title line:
holder.price.setText(listing.price);
Make sense?
Steve.
MUZ140984 Tatenda Mangoro
5,631 Pointsthanks Steve, its clear now...