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 trialNancy Melucci
Courses Plus Student 36,143 PointsCode Challenge Android App Development mealLayout
I don't feel like I have enough information to finish this challenge. Here is my code. How do I stop getting an error related to the OnClickListener(); Unlike Fun Facts I don't know the variable names for the food and drink call.
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);
View.OnClickListener listener = new View.OnClickListener() {
@Override
public void onClick(View v) {
foodLabel = setText("");
drinkLabel = setText("");
mealLayout.setBackgroundColor(Color.GREEN);
}
};
}
}
1 Answer
Jon Kussmann
Courses Plus Student 7,254 PointsHi Nancy,
I believe the task is to just change the background color of the RelativeLayout to green.
So, all you need to do is add (there is no need to create a clicklistener for this exercise):
mealLayout.setBackgroundColor(Color.Green);
I hope this helps, if not please let me know.
Nancy Melucci
Courses Plus Student 36,143 PointsNancy Melucci
Courses Plus Student 36,143 PointsLight dawned on marble head about 20 minutes after I posted. I fixed it. I thank you for your quick response and I appreciate the help.