在哪里可以找到 DownloadManager 的 ContentProvider 实现
我已经尽可能多地搜索了android的开源代码,但我还没有找到通过2.3 SDK中的DownloadManager进行实际下载的实现。我找到了 DownloadManager 的源代码 和 下载类的源代码,该类具有与 ContentProvider 交互的常量,但我一直无法找到该源代码ContentProvider
。
我想找到这个,以便我可以知道实现我自己的下载的好方法,因为我将为我的应用程序使用低于 2.3 的版本。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够找到这个 这里。您还可以通过克隆 DownloadProvider 项目并查看项目源来获取该项目代码。 DownloadProvider.java 正是我所寻找的。然而,DownloadThread.java 处理下载实现的核心,所以我建议查看它。
git命令是
I was able to find this here. You can also get the project by cloning the DownloadProvider project and looking at the project source code. The DownloadProvider.java specifically was what I was looking for. However, the DownloadThread.java handles the heart of the download implementation, so I would recommend looking at that.
The git command is