プロパティ値を変更する ObjectAnimator と ViewPropertyAnimator の違いは何ですか?
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(myObject, "X", 0.0f, 100.0f);
myObject.getX()上記の実行中に試してみobjectAnimatorたところ、0.0f から 100.0 の間の途中の値が得られました。
myObject.setX(0.0f);
myObject.animate().x(100.0f);
myObject.getX()ただし、上記の実行中に正確な 100.0 を取得しViewPropertyAnimatorました。
何がこの違いを生んでいるのか理解できません。
前もって感謝します。