如何在android中的pathAnimation期间旋转图像视图?

时间:2016-06-28 10:39:54

标签: android layout path

我首先使用 xr_test = xr.DataArray(np.random.rand(6), coords={'aux': ('x', [10,10,11,12,12,12])}, dims=['x']) xr_test.groupby('aux').count() 函数设置坐标路径。

现在,我使用值动画制作器在此最终路径上为我的图像视图设置动画。 这适用于上述API 21

path.lineto()

对于API 11+,我使用了这个:

pathAnimator = ObjectAnimator.ofFloat(monsterImage, "x", "y", path);

但我希望每当动画改变它的方向时它应该旋转图像。即每条线将我的图像顺时针旋转90度。

我该怎么做?

0 个答案:

没有答案