我在 menu.xml 中有以下 XML,它是我需要动画的 LinearLayout,所以我使用 layoutAnimation 属性。没有这个属性,布局显示完美,但是有了这个属性集,我得到了一个讨厌的 forceclose ,我不明白为什么:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bkgrnd"
android:layoutAnimation="@anim/menu_anim" <=== adding this results in FC
...etc...
动画/menu_anim.xml:
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<alpha
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:duration="500">
</alpha>
</set>
请帮忙!谢谢!