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 Google Play Services Interacting with Your API Defining onBindViewHolder()

Set the text of the holder.shop TextView object to the value of listing.Shop.shop_name.

Please do help me , i am stuck onTask 4

ListingsAdapter.java
// 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);
  holder.price.setText(listing.price); 
// Set this variable!
}

1 Answer

public void onBindViewHolder(ListingHolder holder, int position) { final Listing listing = listings.results[position]; holder.title.setText(listing.title); holder.price.setText(listing.price); holder.shop.setText(listing.Shop.shop_name); }