好的,所以我在Android Studio上有一个项目,但是当我在模拟器上运行应用程序时,它会崩溃。在堆栈跟踪中,主活动类有一个类未找到的异常,根据我的理解,它指向仅包含if语句的右括号的行。
这是堆栈跟踪:
02-21 14:49:44.498 2362-2362/com.example.user.assignment1 E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.user.assignment1, PID: 2362
java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.user.assignment1/com.example.user.assignment1.MainActivity}: java.lang.ClassNotFoundException: Didn't find class "com.example.user.assignment1.MainActivity" on path: DexPathList[[zip file "/data/app/com.example.user.assignment1-2/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2209)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.example.user.assignment1.MainActivity" on path: DexPathList[[zip file "/data/app/com.example.user.assignment1-2/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
at android.app.Instrumentation.newActivity(Instrumentation.java:1065)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2199)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
at android.app.ActivityThread.access$800(ActivityThread.java:144)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5221)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
Suppressed: java.lang.NoClassDefFoundError: com.example.user.assignment1.MainActivity
at dalvik.system.DexFile.defineClassNative(Native Method)
at dalvik.system.DexFile.defineClass(DexFile.java:226)
at dalvik.system.DexFile.loadClassBinaryName(DexFile.java:219)
at dalvik.system.DexPathList.findClass(DexPathList.java:321)
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:54)
... 14 more
Suppressed: java.lang.ClassNotFoundException: com.example.user.assignment1.MainActivity
at java.lang.Class.classForName(Native Method)
at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
... 13 more
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
由于我无法弄清楚错误的位置,我也会在这里发布代码:
package com.example.user.assignment1;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import java.util.Random;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void left_click(View view) {
Button l=(Button) findViewById(R.id.left);
Button r=(Button) findViewById(R.id.right);
int l1 = Integer.parseInt(l.getText().toString());
int r1 = Integer.parseInt(r.getText().toString());
TextView t=(TextView) findViewById(R.id.label);
if(l1>r1)
{
t.setText("Correct! "+l1+" is bigger!");
}
else
{
t.setText("Sorry! " + r1 + " is bigger!");
}
Random ran = new Random();
int random = ran.nextInt(100);
l.setText(random);
r.setText(random);
}
public void right_click(View view) {
Button l=(Button) findViewById(R.id.left);
Button r=(Button) findViewById(R.id.right);
int l1 = Integer.parseInt(l.getText().toString());
int r1 = Integer.parseInt(r.getText().toString());
TextView t=(TextView) findViewById(R.id.label);
if(l1<r1)
{
t.setText("Correct! "+r1+" is bigger!");
}
else
{
t.setText("Sorry! " + l1 + " is bigger!");
}
Random ran = new Random();
int random = ran.nextInt(100);
l.setText(random);
r.setText(random);
}
}
在ActivityThread.java文件中,有很多错误似乎都是从导入错误中产生的。该文件的错误导入为:
import android.content.IIntentReceiver;//IIntentReceiver is in red
import android.content.pm.IPackageManager;//IPackageManager is in red
import android.net.IConnectivityManager;//IConnectivityManager is in red
import com.android.internal.app.IVoiceInteractor;//IVoiceInteractor
import com.android.org.conscrypt.OpenSSLSocketImpl;//conscrypt is in red
import com.android.org.conscrypt.TrustedCertificateStore;//conscrypt is in red
import com.google.android.collect.Lists;//google is in red
import libcore.io.DropBox;//libcore is in red
import libcore.io.EventLogger;//libcore is in red
import libcore.io.IoUtils;//libcore is in red
import libcore.net.event.NetworkEventDispatcher;//libcore is in red
import dalvik.system.CloseGuard;//CloseGuard is in red
import dalvik.system.VMDebug;//VMDebug is in red
import dalvik.system.VMRuntime;//VMRuntime is in red
这是所要求的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.user.assignment1" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.user.assignment1"
minSdkVersion 8
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}
该项目的gradle构建:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcente
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
r()
}
答案 0 :(得分:12)
首先“清理”和“使用Gradle文件同步项目”。然后运行你的代码。
答案 1 :(得分:12)
只需删除项目的构建文件夹,然后清理并运行您的应用程序..这对我来说很有用。
答案 2 :(得分:6)
您定义MainActivity的包与清单中的包不同。您将清单中的com.example.user.myfirstapp定义为包,并使用清单中的相对路径定义MainActivity。因此清单认为您的MainActivity位于com.example.user.myfirstapp.MainActivty。但是您的MainActivity实际上位于com.example.user.assignment1包中。您可以在清单中为MainActivity使用绝对路径,也可以更改包。
答案 3 :(得分:2)
在Android Studio中,
有些时候由于gradle版本,会产生这种类型的错误。
我遇到了同样的情况并从
切换classpath'com.android.tools.build:gradle:2.0.0-beta2'
到
classpath'com.android.tools.build:grad:1.5.0'
在Project的build.gradle文件中。它对我有用。实际上版本gradle:2.0.0-beta2不稳定,可能存在一些错误。
注意:始终只使用稳定版本
答案 4 :(得分:1)
我遇到了以下问题:
java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
通常没有正确定义具有MAIN意图的正确包名或活动的AndroidManifest.xml
问题。这很容易解决。
我最近遇到了这个问题,发现根本原因在于引用项目。此引用项目(BaseGameUtils
)以某种方式具有google-play-service
的不同版本。在logcat显示上述错误之前,该消息来自console
抱怨jar mismatch
方式。不知怎的,这个控制台消息不会停止编译结束我有运行时错误。这让我感觉像10 M / Hs。
答案 5 :(得分:0)
关闭android studio,删除“.gradle”,“。idea”,“gradle”这3个文件夹。然后打开android studio。现在,Studio将创建新的配置文件,以便应用程序正常运行。
答案 6 :(得分:0)
我面对这种错误,我的解决方案是添加gradle文件依赖项(app)“compile'com.android.support:design:25.3.1'” 发生这种情况是因为我创建了一个没有这种依赖关系的项目,然后我添加了“卡”支持,这需要这种依赖关系。
答案 7 :(得分:0)
重命名包和类后可能会发生这种情况。在您的某个xml布局中,您可能引用标记内的自定义类。不幸的是,Android Studio未重命名此路径。检查路径是否正确。
这也可能是Gradle设置崩溃。尝试从项目文件夹中删除.gradle
和build
文件夹,从模块文件夹中删除build
文件夹,重建并重新启动应用程序。将使用正确的设置重新生成已删除的文件夹。
答案 8 :(得分:0)
有同样的问题,即使尝试了所有答案也无法获取文件。 问题是我的项目位于一个目录中,该目录的路径中有空格。
C:\Users\SomeUser\SOMENAME WITHSPACE\project
将项目移动到另一个没有空间的文件夹后,构建成功并且能够运行该项目。
版本版本为5.5.1
答案 9 :(得分:-1)
这可能是因为没有.class文件。检查是否已定义已编译文件的输出目录,并尝试再次编译故障类。
答案 10 :(得分:-2)