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

Background color

Hi, I am trying to change background color in app. It works fine with pre-set colors:

relativeLayout.setBackgroundColor(Color.WHITE);

But when I want to change it into custom RGB color it gives an error stating that below data should be as "int" value:

relativeLayout.setBackgroundColor(78,238,148);

How to fix this?

Thanks.

1 Answer

The setBackgroundColor() method you are calling only takes a single Integer value, whereas you are passing three. See the documentation for more information.

To use RGB values, try using the Color class..

Something like this may work (untested):

relativeLayout.setBackgroundColor(Color.rgb(78,238,148));