我曾经能够在android中运行没问题,现在默认的启动器应用程序有错误(Bundle
和super.onCreate
)。
此外,它说类需要抽象或实现方法,我曾经能够在Android中运行,甚至没有打开这个文件。
现在需要能够在Android上运行,有什么建议吗?
public class AndroidLauncher extends AndroidApplication {//error on this line, wants it to be abstract
protected void onCreate (Bundle savedInstanceState) {//error here on bundle
super.onCreate(savedInstanceState);//error here on onCreate
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
initialize(new Movement(), config);
}
}
答案 0 :(得分:0)
您收到这些错误是因为您尚未使用“替代”注释声明OnCreate方法。这不是你自己的方法。所以你的代码应该像
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
initialize(new Movement(), config);
}
}
我希望这会奏效。