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 trialnscvnvn vn
Full Stack JavaScript Techdegree Student 4,457 PointsWhy it wrong ?
I think it right
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator
android:propertyName="translationY"
android:duration="1000"
android:interpolator="@android:anim/accelerate_interpolator"
android:valueTo="600"
android:valueFrom="0"
/>
</set>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! I'd suggest looking at the instructions a little more closely. The propertyName
is not correct. The answer is provided to you in the instructions. The duration is supposed to be 2 seconds (per challenge request) but you have it set to one second. And valueTo
is not using the value that the challenge is requesting. Try making these adjustments and check your work again! Hope this helps!