> As another example, using our existing framework to rotate the Sync icon > in the Remote Tabs tray was not feasible [1]: the framework can rotate > views, but not drawables inside views. Modifying the framework to reach > inside the view and change a drawable is significant work. Is NOA more > flexible, or is this something that is not well supported by Android's > animation API (no matter how it is expressed)?
NOA is an exact match to Android's animation framework. As such, it supports animating arbitrary properties in any Java object. See ObjectAnimator: http://developer.android.com/reference/android/animation/ObjectAnimator.html This should allow you to animate any Drawable property as long as there's a setter method for it. --lucasr _______________________________________________ mobile-firefox-dev mailing list [email protected] https://mail.mozilla.org/listinfo/mobile-firefox-dev

