Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I programmatically translate an arbitrary view without using an animation (android.view.animation.*)?

API 11 introduced setTranslationX and setTranslationY, setX and setY, and getMatrix—all of which can be used to accomplish what I'm looking for. I cannot seem to find an equivalent on the prior API levels, however.

The android.view.animation.TranslateAnimation uses getMatrix in its implementation (as far back as API 4) but it was a private API throughout this time.

Is there any way to accomplish this without resorting to reflection?

share|improve this question

5 Answers

up vote 6 down vote accepted

Favorited because I would love to be proven wrong on this one, but I ran into a similar wall when doing some Drag-n-Drop investigations awhile back.

I'm pretty sure you're stuck with offsetTopAndBottom() and offsetLeftAndRight() for moving a View around without an animation in early APIs. The big downside here is that these methods actually modify the top/bottom/left/right values, so you have to do some pretty heavy tracking if you want to go back to where you started from.

Another option would be to simply use a TranslateAnimation with a VERY short duration and set to fillAfter...

Other options require subclassing, and still aren't pretty, like translating the Canvas the View draws on. The problem here is you also have to create a parent that doesn't clip it's children so the view can draw outside its own bounds.

share|improve this answer
You can also subclass layout container class you use, override its onLayout method and set x/y/width/height from there to any values at any time for any view. – Grishka Jan 4 '12 at 21:27
1  
It's a crappy situation. The ironic thing is that I'm actually trying to animate these views' translation but through the Honeycomb API (nineoldandroids.com). I was hoping to provide a compatibility implementation of sorts directly in the library for pre-Honeycomb translation so that someone using the library didn't have to special case it in their own code. I tried the offset methods as you said but it is quite difficult tracking the original location and prevision keyframe location reliably. Reflection is looking better and better... – Jake Wharton Jan 4 '12 at 21:49
Have you managed to done that compability implementation? That would be totally awesome! – yahya May 11 at 11:08

Yes, you can use TranslateAnimation. With fillAfter set to true your view will stay translated even after the animation ends. Here is an example:

TranslateAnimation anim=new TranslateAnimation(0, 0, 20, 20);
anim.setFillAfter(true);
anim.setDuration(0);
yourView.startAnimation(anim);
share|improve this answer

Grishka's answer helped me a lot, works perfectly. In order to animate the translation using the Honeycomb API with nineoldandroids, I set up a FloatEvaluator for the translation value and then used either setTranslationX on Honeycomb+ or the TranslateAnimation method. Here is my code:

public class TranslationXEvaluator extends FloatEvaluator {

private View view;

public TranslationXEvaluator(View view) {
    this.view = view;
}

@Override
public Float evaluate(float fraction, Number startValue, Number endValue) {
    float translationX = super.evaluate(fraction, startValue, endValue);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        view.setTranslationX(translationX);
    } else {
        TranslateAnimation anim = new TranslateAnimation(translationX, translationX, 0, 0);
        anim.setFillAfter(true);
        anim.setDuration(0);
        view.startAnimation(anim);
    }
    return translationX;
}

}
share|improve this answer

I was having the same problem. I was able to achieve the translation by manipulating the layoutparams, specifically the margins, of the views I wanted to translate. You can use negative values for the margins btw.

share|improve this answer

This does the job for me,

if(Build.VERSION.SDK_INT > 13) {
 viewToAnimate.setTranslationY(animatedY);
} else {
 ObjectAnimator.ofFloat(viewToAnimate, "translationY", animatedY)
                                                .setCurrentPlayTime(1000);
}

Using setCurrentPlayingTime(duration) we always set the frame to the last position.

Hope it helps...

share|improve this answer
This will always crash on pre-Honeycomb devices. – Jake Wharton Jan 22 at 21:16
@Jake Wharton, by using your library(nineoldandroids) I am able to achieve the drag animation in pre honey comb devices too. – 66CLSjY Jan 23 at 7:27
Well my library will automatically use setTranslationY when it's available and the implementation found in the answer marked as accepted otherwise. There is no need for the if check. – Jake Wharton Jan 23 at 16:43
First of all thank you very much for your library, it has been immensely helpful for my project. Regarding the question - I might be missing something, but is there a support in your library where I can directly set the views translation property for pre-honey comb? Any pointers would be helpful? – 66CLSjY Jan 23 at 17:01
6  
ViewHelper.setTranslationX(view, 42) – Jake Wharton Jan 23 at 18:06
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.