Android动画和布局拉伸

时间:2014-02-27 18:40:09

标签: android animation

我有一个问题, 我点击按钮点击屏幕上的顶部布局,它按照我想要的方式工作,但是在那个布局下我有另一个,设置在顶部动画下面。 我想要的是每当我的布局被动画化,第二个布局占用空间时,无论何时我的布局进入,它都会推动下一个布局。 可能吗?如果是这样,关于如何完成这样的事情的任何提示?

1 个答案:

答案 0 :(得分:1)

简单的解决方案是使用RelativeLayout作为主要布局,而不是定位内部布局。以这种方式保持订单:

1- the one to be below
2- the one to be animated. 

这样,第二个将永远位于第一个的顶部,除非它被动画化。

<RelativeLayout
android:layout_width = "match_parent"
android:layout_height = "match_parent">

<Layout 1>
<Layout 2(the animated one)>

</RelativeLayout>

In case if you didn't understand