1

我已经在 github https://github.com/johannilsson/android-pulltorefresh上查看了 johannilsson/android-pulltorefresh 。

其中有 2 个项目,pulltorefreshpulltorefreshexample

pulltorefreshcom.markupartist.android.widget.PullToRefreshListView中的示例引用,我不知道如何链接pulltorefresh使用。

现在我在使用图书馆时遇到了问题。

  • 逐个文件复制确实有效,但远非方便。

  • 我也检查了README.md,但它没有涵盖这一点。

  • github上有类似的库项目,它们具有相同的结构,但其中的帮助文件也不包括部署。

我正在使用日食。

4

1 回答 1

2

在 Eclipse 中执行 File->New->other(不要使用 File->new->Android application project)并选择“Android Project from existing code”。

单击下一步,然后浏览到具有 pulltorefresh 库的目录 - 如果要将文件复制到工作区,请选中项目列表框下的复选框。然后单击完成按钮。

重复刚才的操作,但这次选择 pulltorefreshexample 目录。

确保这两个项目都是打开的,然后在包资源管理器中选择 pulltorefreshexample,右键单击它并选择属性。在出现的窗口中选择左侧的 Android,然后在最底部有一个“库”部分。单击添加,您应该会看到一个包含所有打开的库项目的列表。选择 pulltorefresh 之一。

清理并构建库,然后清理并构建示例。

那应该对你有用。

于 2012-11-11T02:23:54.043 回答