通过 eclipse 创建一个 apk

creating an apk via eclipse

我问了一个类似的 earlier and I followed the instructions I was given in the answer。现在我得到 android 选项,我之前没有得到,如下图所示

我 select 选项:导出 Android 应用程序,之后我收到一条消息,指出我尝试导出的项目不是 Android 项目。这真的很令人困惑,我参加了 android 开发课程,我试图转换为 apk 的项目是我创建的第一个项目。以下截图是我看到的消息;

当我单击浏览按钮时,我得到的只是一个新的 window,但其中没有填充任何内容。我需要 help/guidance 人,因为我正在学习 android 开发,我还是个新手 :(

看起来像:

  1. 您的项目尚未打开

Right click on project name in Package Explorer > Open Project

  1. 您的项目可能被意外标记为库项目(库项目无法导出为 apk 文件)

Right click on project name in Package Explorer > Properties > Android > "Is Library" checkbox

  1. 您的项目可能尚未导入到 Eclipse 中。为此, 打开包资源管理器并将您的项目添加到其中:

查看包资源管理器:

Window > Show View > Package Exporer

要导入新项目:

New > Project... > Android Project from Existing Code > [Look for root directory of the Android project, should be the root dir containing the AndroidManifest.xml file] > Select project to import (if you have the previous step correctly you should only see one) > Select Copy projects into workspace (if you want to create a copy in your workspace folder, otherwise ensure that your project files don't move out of your existing directory) > Finish

  1. 您的项目可能被意外配置为 Java 项目而不是 Android 应用程序项目,如果是这样,请参阅 this SO question

如果这不是您看不到任何项目的原因,请告诉我并提供更多信息(也许还可以提供您的整个 IDE 的 Java 视角的屏幕截图)。


项目属性面板应该如下所示:

我不认为你的项目是 Android 项目,而是 Java 项目。 它使用 JRE 进行编译,因此它是一个 Java 项目。 您正在尝试从 Java 项目导出 Android 应用程序。