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 Animations and Transitions Animations Basics Create an Animation in XML

Challenge Task 2 of 4 Next, add the propertyName attribute for the Y position. The property name is simply "y".

Where am I getting it wrong?

drop.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
  <objectAnimator android:propertyName="ScaleX" android:valueFrom="0"  android:valueTo="1" android:duration="150" />
  <objectAnimator propertyName="y" android:valueFrom="0"  android:valueTo="1" android:duration="150" />
</set>

3 Answers

<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <objectAnimator android:propertyName="y"/> </set>

use this answer for task 1 to 4

<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <objectAnimator android:propertyName="y" android:valueTo="400" android:valueFrom="0" android:duration="2000"/> </set>

Thanks a lot, @Yvonne, and @Andrei.