这是我的初始屏幕活动,我试图在一段时间内显示特定图像,当它应该进入第二类时,它给了我一个错误,因为没有 classdeffounderror
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layoutt1);
mSplashThread = new Thread() {
@Override
public void run() {
try {
while (shouldContinue) {
synchronized (this) {
// Wait given period of time or exit on touch
wait(5000);
shouldContinue = false;
}
}
} catch (InterruptedException ex) {
} finally {
finish();
// Run next activity
Intent intent = new Intent(getApplicationContext(),MainActivity.class);
startActivity(intent);
shouldContinue = false;
// stop();
}
}
};
mSplashThread.start();
}
我的 logcat 显示
06-10 14:38:00.450: E/AndroidRuntime(5853): java.lang.NoClassDefFoundError: com.bara.fol.MainActivity
找不到从方法 com.bara.fol.Main$1.run 引用的类 'com.bara.fol.MainActivity'
这是我的 manifest.xml 存在于应用程序标签中。
<activity
android:name=".Main"
android:label="@string/title_activity_main" >
<intent-filter
android:label="@string/app_name"
>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity" ></activity>