如何知道我的 Android 设备上正在下载任何数据

发布于 2024-11-07 19:36:02 字数 224 浏览 0 评论 0原文

考虑通过任何其他应用程序在我的 Android 设备上下载一首歌曲。 或者正在从市场下载应用程序。现阶段我的设备正在使用移动网络。

我们可以编写代码来告诉正在从连接的网络下载数据吗?

使用 ConnectivityManager 我可以获得所有活动网络列表。我也可以获得连接的网络名称。

连接是否意味着流已准备好进行任何数据传输或数据正在传输?

如何知道数据是否被下载?

Consider a song is getting downloaded over my android device via any other application.
Or an application is getting downloaded from market. At this stage my device is using mobile network.

Can we write code which will tell data download is in progress from connected network.

Using ConnectivityManager I can get all active network list. I can get the connected network name as well.

Is connected means streams are ready to do any data transmission or data is transmitting?

How to know at time data is getting downloaded or not?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠栀 2024-11-14 19:36:03

android.net.TrafficStats 类(自 API 级别 8 起)提供您正在寻找的值。通过定期监控值,您可以得出有关歌曲下载进度的信息(但不是单独的,如果其他网络通信正在并行进行)。

更新:

从 API 级别 12 开始,您可以从同一类中获取更详细的信息。添加了许多有用的新功能。

Class android.net.TrafficStats (since API level 8) provides values you are looking for. Via periodic monitoring of values you may conclude something about progress of your (but not separately, if other network communication is pending in parallel) song download.

UPDATE:

Since API level 12 you can get much more detailed info from the same class. A number of useful new functions has been added.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文