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 trialMalcolm Mutambanengwe
4,205 Pointsobject animator
I'm not clearly understanding the question Steve Hunter
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator android:propertyName="scaleY" android:propertyYName="y"
</set>
2 Answers
Steve Hunter
57,712 PointsHi Mal,
You've pretty much got that. First, close the angle brackets at the end of the line. Inside, you just need android:propertyName="y"
.
So you have in full:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator android:propertyName="y">
</set>
Steve.
Malcolm Mutambanengwe
4,205 PointsTwo thumbs up, and two toes also. LoL