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) Acting on List Item Taps Using a ListView in a Regular Activity

Benjamin McKenzie
Benjamin McKenzie
7,455 Points

Call function for specific view in the custom list item

How would I make it to where when a certain part of each list item is clicked something happens. For example, if I click the day of the week a toast message just says, "the day is (insert day that was clicked)" but when I click on the temperature label it says, "the temperature is (insert temperature here)"?

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

You can use setOnClickListener() on the ViewHolder or any views within (or ButterKnife's @OnClick annotation). Just be aware that you should also store the list position in the ViewHolder when it's bound if you want to access the list item directly (as opposed to the Views in the ViewHolder), particularly with a RecyclerView.

Benjamin McKenzie
Benjamin McKenzie
7,455 Points

would you be willing to give me a simple example?