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 trialrobert harris
1,033 PointsPretty Little Things, Challenge Task 3/3
Now we want to attach the fadeOutAnimation to the ‘statusLabel’ TextView. Set it by using the 'setAnimation()' method of the statusLabel variable. Remember that our fadeOutAnimation is the parameter for the 'setAnimation()' method!
private TextView mAnswerLabel;
TextView statusLabel = (TextView) findViewById(R.id.statusLabel);
AlphaAnimation fadeOutAnimation = new AlphaAnimation (1, 0); fadeOutAnimation.setDuration(2000);
mAnswerLabel.setAnimation(fadeOutAnimation);
Not Sure what I'm doing here or where I've gone wrong but if anyone could help, that would be great. Thanks.
2 Answers
stephieoldcorn
7,082 PointsHi,
For this challenge I didn't include your first line, and then I think that your last line of code needs to be:
statusLabel.setAnimation(fadeOutAnimation);
so that you are using the method on the "statusLabel" variable.
robert harris
1,033 PointsWorked, Thanks!