如何在sdk 14之前使用ObjectAnimator for View属性Y.

时间:2015-06-07 21:33:40

标签: android objectanimator

我试图使用ObjectAnimator为" x"设置动画。和" y"视图的属性。它在api 14+中工作得很好,但我注意到这些属性被添加到api 14中的视图类中。如何让它们在pre api 14中工作? 我考虑过以下但是被卡住了:

            ObjectAnimator y = new ObjectAnimator();
            Property<View, Float> yProperty;
            if(Build.VERSION.SDK_INT >= 14){yProperty = Property.of(View.class, Float.class, "y");}
            else{yProperty = Property.of(View.class, Float.class, "top");}
            y.setProperty(yProperty);

0 个答案:

没有答案