ScaleAnimation sa = new ScaleAnimation(0, 1, 0, 1);
sa.setDuration(5000);
LayoutAnimationController lac = new LayoutAnimationController(sa, 0.5f);
lac.setOrder(LayoutAnimationController.ORDER_REVERSE);
rootView.setLayoutAnimation(lac);
return rootView;
fragment_main的布局内容代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.jikexueyuan.layoutanimationinlinearlayout.MainActivity$PlaceholderFragment" >
<Button
android:id="@+id/Button05"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/Button04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
本文介绍了一个使用Android中的LinearLayout作为根视图的Fragment实例,并为该Fragment设置了缩放动画效果。通过LayoutInflater加载fragment_main布局文件,创建ScaleAnimation实现按钮的放大显示效果,同时利用LayoutAnimationController控制动画顺序与速度。
1086

被折叠的 条评论
为什么被折叠?



