无法在Android意图中使用该库

时间:2012-04-05 13:30:34

标签: android android-intent

我想在我的应用程序中使用文件浏览器,因此谷歌搜索时发现" Android File Dialog"在code.google.com上。来自源的输出是一个android库,我已经将其包含在我的Android项目中作为构建路径上的必需项目"在项目属性对话框中。但是,当我运行我的应用程序时,它给了我异常 -

java.lang.NoClassDefFoundError: com.lamerman.FileDialog 

发生错误的行是 -

Intent intent = new Intent(this, FileDialog.class);

此行位于Activity onCreate方法中。

我甚至在 AndroidManifest.xml -

中添加了以下条目
<activity android:name="com.lamerman.FileDialog" />

我在Eclipse中没有收到任何编译错误。

使用库运行应用程序时是否遗漏了一些内容?

1 个答案:

答案 0 :(得分:1)

按照提及的步骤here点击Setting Up a Project to Use a Library。他们在这里提到了如何将jar文件添加到库中。

如果您要将库项目添加到项目中,请按照上述步骤here点击Referencing a library project