2

我一直在研究 Android 上的动画主题,但在针对使用 Percent 库的项目实施这些发现时遇到了障碍。

特别是,我的布局 xml 中有以下元素:

 <ImageView
        android:id="@+id/aImage"
        android:src="@drawable/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_marginTopPercent="35%"
        android:layout_centerHorizontal="true"
        android:visibility="invisible"/>

将以下属性分配给根PercentRelativeLayout元素:

xmlns:app="http://schemas.android.com/apk/res-auto"

现在,我想创建一个AnimatorSet可以执行多个操作的对象,重点是app:layout_marginTopPercent="35%"属性。

我尝试创建一个 ObjectAnimator 并将其添加到 AnimatorSet 但这没有效果:

ObjectAnimator anim1 = ObjectAnimator.ofFloat(logoImageView, "layout_marginTopPercent", 0.35f, 0.1f);
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playSequentially(anim1);
animatorSet.start(); 

任何人都可以解释我哪里出错了。有趣的是,我能够创建一个动画 .xml 文件并使用 translate 元素来执行成功的动画,但我需要在代码中执行此操作。下面是一个成功的 .XML 动画示例:

<set>
        <translate
         android:fromYDelta="0%p"
         android:toYDelta="-25%p"
         android:duration="1000" />
</set>

提前致谢

4

1 回答 1

4

我的库ViewPropertyObjectAnimator的新版本 (>=1.3.0)提供了一种percentPercent Support Library. 获得一个ObjectAnimator(你可以在你的内部使用AnimatorSet)就像使用一样简单ViewPropertyAnimator

ObjectAnimator logoMarginAnimator = 
            ViewPropertyObjectAnimator.animate(logoImageView).topMarginPercent(0.1f).get();
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.play(logoMarginAnimator);
animatorSet.start(); 
于 2015-12-14T10:47:02.663 回答