尝试在Android Studio 2.2.2中构建和运行可在Eclipse中运行的应用程序。当我尝试调试它时(在三星Galaxy选项卡4上)我得到:( BTW有没有办法让它在StackOverflow中更容易出现?)
I / System.out:等待调试器解决... I / System.out:debugger 已定居(1484)I / InstantRun:即时运行运行时启动。 Android的 package是com.xxxxxxx.remote,真正的应用程序类是null。 W / InstantRun:没有添加到类路径的即时运行dex文件 D / AndroidRuntime:关闭VM E / AndroidRuntime:FATAL EXCEPTION: 主要 处理:com.xxxxxxx.remote,PID:1925 java.lang.RuntimeException:无法实例化活动 ComponentInfo {com.xxxxxxx.remote / com.xxxxxxx.remote.RemoteControlActivity}: java.lang.ClassNotFoundException:没找到类 路径上的“com.xxxxxxx.remote.RemoteControlActivity”:DexPathList [[zip 文件 “/data/app/com.xxxxxxx.remote-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /系统/ lib中]] 在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2644) 在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2867) 在android.app.ActivityThread.access $ 900(ActivityThread.java:181) 在android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1476) 在android.os.Handler.dispatchMessage(Handler.java:102) 在android.os.Looper.loop(Looper.java:145) 在android.app.ActivityThread.main(ActivityThread.java:6134) at java.lang.reflect.Method.invoke(Native Method) 在java.lang.reflect.Method.invoke(Method.java:372) 在com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:1399) 在com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1194) 引起:java.lang.ClassNotFoundException:在路径上找不到类“com.xxxxxxx.remote.RemoteControlActivity”: DexPathList [[zip文件 “/data/app/com.xxxxxxx.remote-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /系统/ lib中]] 在dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56) at java.lang.ClassLoader.loadClass(ClassLoader.java:511) at java.lang.ClassLoader.loadClass(ClassLoader.java:469) 在android.app.Instrumentation.newActivity(Instrumentation.java:1079) 在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2634) 在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2867)
...等... 我用“xxxxx”编辑了一个专有名称。 实际应用程序类为空和没有添加到类路径的即时运行dex文件是什么意思?此外,我在很多类似的问题中看到了“无法实例化活动ComponentInfo ”的引用 - 这是什么意思?
它无法找到的活动在清单中声明为......
<activity android:launchMode="singleTask"
android:label="@string/app_name"
android:windowNoTitle="false"
android:configChanges="orientation"
android:screenOrientation="landscape"
android:name=".RemoteControlActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我甚至无法在Activity的开头点击断点,所以我该如何调试呢?
答案 0 :(得分:0)
您可以停用InstantRun并查看问题是否仍然存在。