如何在视图组上使两个子视图彼此独立

时间:2018-08-26 19:07:56

标签: android android-layout android-viewgroup

我在视图组的两个子视图上运行了两个自定义动画。两种动画应同时开始,但它们不应互相干扰。目前,我看到了一种动画对另一种动画的影响。我该如何使它们独立,以使一个人的影响不会出现在另一个人身上?

//here itemView is a ViewGroup
FrameLayout parent = FrameLayout.class.cast(itemView);
View animationView = new View(context)
parent.setLayoutParams(layoutParams);
parent.setClipChildren(false);
parent.addView(animationView);

0 个答案:

没有答案