gpt4 book ai didi

java - 启动新 Activity 时出现 NoClassDefFoundError(未知来源)

转载 作者:行者123 更新时间:2023-11-29 08:56:31 26 4
gpt4 key购买 nike

我正在尝试开始一项 Activity

`package com.kapzlock.mytestproject;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class Splash extends Activity{

@Override
protected void onCreate(Bundle SomeVar) {
// TODO Auto-generated method stub
super.onCreate(SomeVar);
setContentView(R.layout.splash);
Thread timer = new Thread(){
public void run(){
try{
sleep(5000);
}
catch(InterruptedException e){
e.printStackTrace();
}
finally{
Intent openStartingPoint = new Intent("com.kapzlock.mytestproject.MAINACTIVITY");
startActivity(openStartingPoint);
}
}
};
timer.start();
}

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

}

}
`

list xml 文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kapzlock.mytestproject"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.kapzlock.mytestproject.MAINACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>

</manifest>

它编译没有问题,但是当我运行 Splash.class 时,我得到一个 Exception in thread "main"java.lang.NoClassDefFoundError: android/app/Activity 错误。包名称是 com.kapzlock.mytestproject,我引用的类是 MainActivity.class。有谁知道错误可能在哪里?

最佳答案

试试这个:

转到 Project/Properties/Java Build Path/Order and Export -- 确保在 Android Dependencies 和支持库前面有一个检查,如果你使用它。标记所有复选框。单击 Apply 并清理项目。

这对我有用。希望对您有所帮助。

关于java - 启动新 Activity 时出现 NoClassDefFoundError(未知来源),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20070866/

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