gpt4 book ai didi

java - Android:是什么让我的应用程序崩溃?

转载 作者:行者123 更新时间:2023-11-29 22:14:10 30 4
gpt4 key购买 nike

我每天都收到一些错误,我不确定发生了什么。

如果需要更多信息,请告诉我。

我可能没有提供足够的信息。

这是我在开发者控制台中遇到的错误:

java.lang.RuntimeException: Unable to destroy activity {com.Calculator.SalesTaxCalculator/com.Calculator.SalesTaxCalculator.Calculator}: java.lang.NullPointerException
at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:3199)
at android.app.ActivityThread.handleDestroyActivity(ActivityThread.java:3264)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:3380)
at android.app.ActivityThread.access$1600(ActivityThread.java:145)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1049)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:150)
at android.app.ActivityThread.main(ActivityThread.java:4369)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:846)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:604)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.content.ComponentName.<init>(ComponentName.java:75)
at android.content.Intent.<init>(Intent.java:2920)
at com.Calculator.SalesTaxCalculator.BillingHelper.stopService(BillingHelper.java:265)
at com.Calculator.SalesTaxCalculator.Calculator.onDestroy(Calculator.java:302)
at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:3181)
... 12 more

302行

protected void onDestroy() {

从第 301 行开始(这是该页面上的最后一组代码。)

@Override
protected void onDestroy() {
BillingHelper.stopService();
super.onDestroy();

}
}

BillingHelper 中的 StopService 方法

public static void stopService(){
mContext.stopService(new Intent(mContext, BillingService.class));
mService = null;
mContext = null;
mCompletedHandler = null;
Log.i(TAG, "Stopping Service");
}
}

有人在其中一条崩溃报告评论中指出该应用甚至无法打开。更多信息是它使用共享首选项在计算器中保存数字。还有一个使用应用内计费服务的捐赠按钮。

最佳答案

将其更改为调用 super.onDestroy();首先,然后是其他内容,例如:

@Override
protected void onDestroy() {
super.onDestroy();
BillingHelper.stopService();
}

关于java - Android:是什么让我的应用程序崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8877035/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com