Override Android's default animations

You must Login before you can answer or comment on any questions.

Is there a simple way to override the default android window transition animations? I would like a simple fade instead of jellybean's flyin animation.

latest SDKs

1 Answer

Check the "Animations" section of the Window docs

— answered 9 months ago by Anthony Decena
answer permalink
1 Comment
  • Yes. Still doesn't address the question being for Android and it being a simple fade transition. I don't see how I can accomplish what I need to do with what is given there. Seems like it was directed at iphones.

    var window2 = Titanium.UI.createWindow({url:'foo.js'});
    var t = Ti.UI.iPhone.AnimationStyle.FLIP_FROM_LEFT;
    window1.animate({view:window2,transition:t});
    The other example I don't see how it would do what I want either.

    — commented 9 months ago by Tyler Presley

Your Answer

Think you can help? Login to answer this question!