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!
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
Donovan Brown
571 PointsMealActivity
I'm getting an error when trying to change to background color to green. Please help.
import android.os.Bundle; import android.widget.TextView;
public class MealActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_meal);
TextView foodLabel = (TextView) findViewById(R.id.foodTextView);
TextView drinkLabel = (TextView) findViewById(R.id.drinkTextView);
RelativeLayout mealLayout = (RelativeLayout) findViewById(R.id.mealLayout);
relativeLayout.setBackgroundColor(color.GREEN);
}
}
1 Answer

Kristen Law
16,244 PointsIt looks like you're trying to call setBackgroundColor
on a variable called relativeLayout
. Did you mean to call that on your RelativeLayout
named mealLayout
? Or do you have another RelativeLayout
named relativeLayout
? Also, I believe the color
needs to be capitalized since you're calling the GREEN
static constant in the Color
class.
See if the following changes work for you:
RelativeLayout mealLayout = (RelativeLayout) findViewById(R.id.mealLayout);
mealLayout.setBackgroundColor(Color.GREEN);