Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 项目中,我使用的是 Android 项目中的类并使用 android View 对象。当我尝试在非 android 项目中使用该类时,我在运行时收到 no class found 错误。如何将 android.widget.view.View 导入非 android 项目?我可以将它添加到我的项目构建中吗?
如果没有 android 平台运行时,即.. DalvikVM 等......您将无法运行在 Java 项目中呈现“视图”所需的任何框架。有没有想过。。但要对其进行编码,您至少需要将 Android.jar 导入您的 Java 项目构建路径。它可能会找到 Widget 包,但 Widget 包会寻找 Android SDK 等...
android.widget.View 在 Android 环境之外给你什么?