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 Build a Simple Android App with Java Improving Our Code Using the New Colors

Nataly Rifold
Nataly Rifold
12,431 Points

Lamda instead of @Override in the OnClickListener interface

It works, I gust wonder way the change, and it capt the OOP aspect

View.OnClickListener listener = (v) -> { factTextView.setText(factBook.getFact()); int color = colorWheel.getColor(); relativeLayout.setBackgroundColor(color); showFactButton.setTextColor(color); }; showFactButton.setOnClickListener(listener);

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

Yes, it can be done that way with lambdas just like that. There are really several different ways/styles of attaching a listener. The course is just presenting one of them and one of the most common ways to do it.