我是初学者,所以不明白我是如何解决这个问题的。我的XML代码没问题。但是当运行模拟器然后点击应用程序它说"不幸的是......已经停止了#34;
错误消息:
java.lang.RuntimeException: Unable to instantiate activity
ComponentInfo{com.example.imran.justjava/com.example.imran.justjava.MainActivity}: java.lang.ClassNotFoundException: Didn't find class "com.example.imran.justjava.MainActivity" on path: DexPathList[[zip file "/data/app/com.example.imran.justjava-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.imran.justjava.MainActivity" on path: DexPathList[[zip file "/data/app/com.example.imran.justjava-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.ClassNotFoundException: com.example.imran.justjava.MainActivity
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
这是我的java代码
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;
import com.example.imran.justjava.R;
/**
* This app displays an order form to order coffee.
*/
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/**
* This method is called when the order button is clicked.
*/
public void submitOrder(View view) {
display(1);
}
/**
* This method displays the given quantity value on the screen.
*/
private void display(int number) {
TextView quantityTextView = (TextView) findViewById(
R.id.quantity_text_view);
quantityTextView.setText("" + number);
}
}
这是Xml代码
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:text="quantity"
android:textAllCaps="true"
android:padding="16dp"
android:textSize="16sp"
/>
<TextView
android:id="@+id/quantity_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:padding="16dp"
android:textSize="16sp"
android:textColor="@android:color/black"
/>
<Button
android:id="@+id/order_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="order"
android:onClick="submitOrder"
/>
</LinearLayout>
AndroidManifast.xml代码
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.imran.justjava" >
<application
android:allowBackup="true"
android:icon="@mipmap/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>
</manifest>
答案 0 :(得分:0)
引起:java.lang.ClassNotFoundException:没有找到类 “com.example.imran.justjava.MainActivity”
ClassNotFoundException: ClassNotFoundException在类加载器无法在类路径中找到所需的类时发生。所以,基本上你应该检查你的类路径并在类路径中添加类。
<强> I guess your activity in manifest is not correct.
强>
发布 manifest.xml 。
看看这里 https://developer.android.com/intl/es/samples/BasicContactables/AndroidManifest.html
示例强>
<activity
android:name=".MainActivity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
答案 1 :(得分:0)
错误:强>
java.lang.RuntimeException:无法实例化活动 ComponentInfo {com.example.imran.justjava / com.example.imran.justjava.MainActivity}: java.lang.ClassNotFoundException:没有找到类
我也遇到过这个问题。
您的MainActivity.java
已从编译中排除,因此此类未包含在.apk
从excludeFromCompile
文件的.idea/compiler.xml
部分删除以下行
<file url="file://$PROJECT_DIR$/src/com/example/imran/justjava/MainActivity.java" />
答案 2 :(得分:0)
我认为错误存在于您的清单文件中。
首先确保您已在MainActivity
AndroidManifest.xml
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
答案 3 :(得分:0)
我在最新的AndroidStudio中遇到了同样的问题。在Android的更高版本中,一切都在编译并运行良好。
但是,只要我在使用Android 4.x的模拟器上运行应用程序,它就会崩溃,并且会发生与本文中提到的相同的ClassNotFoundException。
在网上尝试了很多解决方案之后,事实证明这个问题与multiDexEnabled设置为true有关。我本来可以发誓,这之前工作正常。禁用multidex解决了这个问题。
遵循https://developer.android.com/studio/build/multidex.html#mdex-gradle的指南也应该修复它,尽管我自己没有尝试过。