我刚刚在几周后打开了我的代码,现在它似乎不起作用。我打开了一个启动画面,然后移动到主屏幕。启动画面有效,但当试图移动到主页时,它会说No Class Def Found
. 这是什么意思,我该如何解决?
它说问题是在启动屏幕类中的以下代码中发现的:
public void run()
{
//Finish the splash activity so it can't be returned to.
SplashScreen.this.finish();
// Create an Intent that will start the main activity.
Intent mainIntent = new Intent(SplashScreen.this, HomeScreen.class);
SplashScreen.this.startActivity(mainIntent);
}