我正在制作一个计算器应用程序,它当然有很多按钮,特别是在我的情况下是 imagebuttons。该应用程序适用于 2.3,但会导致 4.0 出现问题。问题是我的 ViewFlipper 显示下一个视图时出现 NullPointerException。
phhistbnt.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
try
{
vib.vibrate(30);
if(animChoice == 0)
vf1.showNext(); // issue here and most likely the rest of them
else if(animChoice == 1)
{
vf1.setOutAnimation(topUp);
vf1.showNext();
vf1.setInAnimation(Fl);
}
else if(animChoice == 2)
{
vf1.setOutAnimation(fadeOut2);
vf1.showNext();
vf1.setInAnimation(hy);
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
});
这是LogCat:
08-18 21:55:29.301: W/System.err(6141): java.lang.NullPointerException
08-18 21:55:29.301: W/System.err(6141): at
f7Calc.com.KidzCalcActivity$12.onClick(CalcActivity.java:751)
08-18 21:55:29.301: W/System.err(6141): at
android.view.View.performClick(View.java:3549)
08-18 21:55:29.301: W/System.err(6141): at
android.view.View$PerformClick.run(View.java:14393)
08-18 21:55:29.311: W/System.err(6141): at
android.os.Handler.handleCallback(Handler.java:605)
08-18 21:55:29.311: W/System.err(6141): at
android.os.Handler.dispatchMessage(Handler.java:92)
08-18 21:55:29.311: W/System.err(6141): at android.os.Looper.loop(Looper.java:154)
08-18 21:55:29.311: W/System.err(6141): at
android.app.ActivityThread.main(ActivityThread.java:4945)
08-18 21:55:29.311: W/System.err(6141): at
java.lang.reflect.Method.invokeNative(Native Method)
08-18 21:55:29.311: W/System.err(6141): at
java.lang.reflect.Method.invoke(Method.java:511)
08-18 21:55:29.311: W/System.err(6141): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
08-18 21:55:29.311: W/System.err(6141): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
08-18 21:55:29.311: W/System.err(6141): at dalvik.system.NativeStart.main(Native
Method)
在模拟器中,Logcat 会显示:
08-18 22:19:25.144: I/Choreographer(1290): Skipped 67 frames! The application may be
doing too much work on its main thread.
但它继续照常工作。我已经开始使用 AsyncTask 但我不确定如何使用它。请任何帮助将不胜感激。