我的应用程序在调用我的动画时崩溃了?

时间:2013-08-17 15:02:18

标签: android animation

我有一个AnimationDrawable对象,当我调用wavingAndroid方法时,游戏崩溃了。有帮助吗? 这是我的MainActivity.java

    private void wavingAndroid(){
ImageView animateAndroid = (ImageView) findViewById(R.id.dancingAndroidLogo);
animateAndroid.setImageResource(R.drawable.movingandroid);
AnimationDrawable androidAnimation = (AnimationDrawable) animateAndroid.getDrawable();
androidAnimation.start();
    }

我试着在这里打电话:

    public void onClick(View v){
    wavingAndroid();
    }

这是我的xml文件:

    <animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true" >

<item
    android:drawable="@drawable/dancinglogo01"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo02"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo03"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo04"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo05"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo06"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo07"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo08"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo09"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo10"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo11"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo12"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo13"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo14"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo15"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo16"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo17"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo18"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo19"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo20"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo21"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo22"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo23"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo24"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo25"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo27"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo28"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo29"
    android:duration="41"/>
<item
    android:drawable="@drawable/dancinglogo30"
    android:duration="41"/>

<!-- Reset to original -->
<item
    android:drawable="@drawable/dancinglogo01"
    android:duration="10"/>

    </animation-list>

这是我的logcat:

    08-17 09:59:22.487: E/AndroidRuntime(22392): FATAL EXCEPTION: main
    08-17 09:59:22.487: E/AndroidRuntime(22392): java.lang.NullPointerException
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at         com.thatnerdstuff.build_a_rig.MainActivity.wavingAndroid(MainActivity.java:149)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at com.thatnerdstuff.build_a_rig.MainActivity.access$0(MainActivity.java:145)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at com.thatnerdstuff.build_a_rig.MainActivity$1.onClick(MainActivity.java:46)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.view.View.performClick(View.java:4203)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.view.View$PerformClick.run(View.java:17189)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.os.Handler.handleCallback(Handler.java:615)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.os.Handler.dispatchMessage(Handler.java:92)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.os.Looper.loop(Looper.java:137)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at android.app.ActivityThread.main(ActivityThread.java:4950)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at java.lang.reflect.Method.invokeNative(Native Method)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at java.lang.reflect.Method.invoke(Method.java:511)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1004)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:771)
    08-17 09:59:22.487: E/AndroidRuntime(22392):    at dalvik.system.NativeStart.main(Native Method)

任何有关此事的帮助都会非常棒,因为我已经查看了许多其他论坛,并尝试找到修复程序,我不知道它来自哪里。我试过清理这个项目,没什么。提前谢谢!

1 个答案:

答案 0 :(得分:1)

尝试在代码中将图像加载到AnimationDrawable,如下所示:

AnimationDrawable frameAnimation= new AnimationDrawable();
frameAnimation.addFrame(getResources().getDrawable(R.drawable.dancinglogo01), 41);
frameAnimation.addFrame(getResources().getDrawable(R.drawable.dancinglogo02), 41);

wavingAndroid()方法中添加这样的所有帧,然后将其加载到imageView,就像这样

animateAndroid = (ImageView) findViewById(R.id.dancingAndroidLogo);
animaateAndroid.setBackgroundDrawable(frameAnimation);

现在,在onClick()方法中,使用以下方法启动动画:

frameAnimation.start();
相关问题