删除其中一个视图后,使用动画合并剩余视图

时间:2014-05-15 11:19:02

标签: android android-layout android-animation

我有4个视图的线性布局。我在第二个位置滑动并删除了View。现在我希望第3个位置的视图与动画第1个位置的视图合并。这是示例代码: LinearLayout temp =(LinearLayout)findViewById(R.id.linear); temp.removeViewAt(2);

通过删除视图后立即执行此操作,其余视图将相互连接而不会生成动画。我想让它加入动画。

请帮忙。感谢

1 个答案:

答案 0 :(得分:2)

将android:animateLayoutChanges属性设置为true。

http://developer.android.com/training/animation/layout.html