我想在我的应用程序中使用文件浏览器,因此谷歌搜索时发现" 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中没有收到任何编译错误。
使用库运行应用程序时是否遗漏了一些内容?