安卓ߞ如何跟踪应用程序或进程的带宽使用情况?
我可以跟踪 Android 设备的整体带宽使用情况。我想知道是否有任何方法或途径(也许是 API 或类)可以帮助我跟踪每个应用程序或进程的带宽使用情况?
提出这个问题的原因?我想停止所有那些使用过多带宽并耗尽电池的进程或应用程序。
I can track the overall bandwidth usage of Android device. I wanted to know if there is any method or way, maybe an API or class, that can help me track my bandwidth usage per application or process?
Reason for this question? I want to stop all those processes or applications that are using way too much bandwidth usage and draining the battery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
android.net.TrafficStats
< 中的方法/a>,特别是getUidRxBytes
和getUidTxBytes
。You can use the methods in
android.net.TrafficStats
, particularlygetUidRxBytes
andgetUidTxBytes
.