gpt4 book ai didi

c# - xamarin Android.Util.AndroidRuntimeException : Activity{x} did not call through to super. onStart()

转载 作者:行者123 更新时间:2023-12-02 17:40:55 25 4
gpt4 key购买 nike

我在下面显示的代码中收到此错误,但不知道原因。我的代码是:

 protected override void OnStart()
{
if (WCHSBMobileApplication.Current.SuperBillObject == null)
{
AddSuperBill();
}
else
{
EditSuperBill();
}
}

我能做什么?

最佳答案

异常消息说明了一切:

您删除了这一行:

base.OnStart();

您需要将其添加回来:

protected override void OnStart()
{
base.OnStart();

if (WCHSBMobileApplication.Current.SuperBillObject == null)
{
AddSuperBill();
}
else
{
EditSuperBill();
}
}

关于c# - xamarin Android.Util.AndroidRuntimeException : Activity{x} did not call through to super. onStart(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38248567/

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