Could not find class XXX referenced from method XXX.lt;YYYgt;(找不到从方法 XXX 引用的类 XXX.lt;YYYgt;)
问题描述
我正在开发一个 libGDX 项目,并且我有一个名为 CheerVArachnids 的类,它有另一个内联类,它是一个事件侦听器.当我在桌面上运行这个项目时,它工作正常.但是当我在我的 Android 设备上运行时,它找不到那个内联类并且我收到以下错误:
I'm working on a libGDX project and I have a class called CheerVArachnids that has another inline class which is an event listener. When I run this project on the desktop it works fine. BUT when I run on my Android device, it can't find that inline class and I get the following error:
Could not find class 'com.bbj.cva.CheerVArachnids$PlaceUnitListener', referenced from method com.bbj.cva.CheerVArachnids.<init>
以下是我班级的重要部分:
Here are the important parts of my class:
package com.bbj.cva;
public class CheerVArachnids implements ApplicationListener {
class PlaceUnitListener implements EventSubscriber<PlaceUnitEvent> {
@Override
public void onEvent(PlaceUnitEvent event)
{
//
}
}
public CheerVArachnids() {
EventBus.subscribe(PlaceUnitEvent.class, new PlaceUnitListener());
EventBus.subscribe(RemoveScreenObjectEvent.class,
new RemoveScreenObjectListener());
}
}
任何想法为什么在 Android 上,在运行时找不到该内联类?
Any ideas why on Android, at runtime it can't find that inline class?
推荐答案
由于某些 ADT-Version 您必须设置也应该导出哪些库/项目.
Since some ADT-Version you have to set which libraries / projects should be exported too.
Project-Propiertes -> Java Build Path -> Order and Export -> 检查您正在使用的源代码和其他库.
Project-Propiertes -> Java Build Path -> Order and Export -> Check your Sources and other Libraries you are using.
为您的核心项目和 Android 项目执行这些导出设置.
Do these Export-Settings for your Core- and Android-Project.
那么它应该可以在 Android 上正常工作.
Then it should work fine on Android.
这篇关于找不到从方法 XXX 引用的类 XXX.<YYY>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到从方法 XXX 引用的类 XXX.<YYY>
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01