Android 2.1 API 7 是否有 TrafficStats 的替代品?
2.1 API7 是否有 Android.net TrafficStats 类的替代品?由于 TrafficStats 仅支持 2.2 和 2.2以上版本。
Is there any substitute for Android.net TrafficStats class for 2.1 API7? Since TrafficStats supports only 2.2 & above versions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TrafficStats 仅支持 2.2 和 2.2以上版本。但我们知道它是如何运作的。
TrafficStats 类读取 Linux 内核中的系统文件来获取日期。所以也许我们可以尝试自己解决这个问题。当我在 adb shell 中运行“cat /proc/net/dev”时,我可以获得流量数据。所以我试图在我的应用程序中读取这个文件。
也许这个博客可以帮助你。
还有这里 是一个类似的问题。
TrafficStats supports only 2.2 & above versions. But we know how it works.
The TrafficStats class reads the system file in linux kernel to get the date. So maybe we can try to handle this by ourselves. When I run "cat /proc/net/dev" in adb shell I can get the traffic data. So I'm trying to read this file in my app.
Maybe this blog can help you.
And here is a similar question.