2

menu.xml に次の XML があります。アニメーション化する必要があるのは LinearLayout であるため、layoutAnimation プロパティを使用します。このプロパティがないと、レイアウトは問題なく表示されますが、このプロパティを設定すると、厄介な強制終了が発生し、その理由がわかりません:

<?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>

助けてください!ありがとう!

4

1 に答える 1