嗨我在线性布局中有两个视图,垂直方向如下所示,我想向上移动并在显示第二个视图时向下移动动画并隐藏。 好像现在当我显示和隐藏第二个图像视图时,它就像突然变化一样,我希望使用一些动画使其平滑过渡。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:gravity="center_horizontal|bottom"
android:orientation="vertical"
android:paddingBottom="@dimen/small_padding"
android:paddingTop="@dimen/normal_padding"
android:weightSum="2">
<ImageView
android:id="@+id/b_icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="-4dp"
android:layout_marginTop="3dp"
android:contentDescription="@null"
android:paddingBottom="@dimen/normal_padding"
android:src="@drawable/find_books" />
<ImageView
android:id="@+id/tab_icon_shadow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab_icon_shadow"
android:visibility="gone" />
</LinearLayout>
答案 0 :(得分:0)
你应该结合翻译&amp; AlphaAnimation使转换顺利进行。
答案 1 :(得分:0)
您好我添加了android:animateLayoutChanges =&#34; true&#34;现在它变得平滑过渡而不添加任何动画