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

object animator

I'm not clearly understanding the question Steve Hunter

drop.xml
<?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

Hi 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.

Two thumbs up, and two toes also. LoL